Update tests.py to remove string assertion #391
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🚀 Deploy Django | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-deploy: | |
| name: 🎉 Build and Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🚚 Get latest code | |
| uses: actions/checkout@v2 | |
| - name: 🔨 Set up Python 3.12 | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.12 | |
| - name: 🛠 Install Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: ▶ Run Tests | |
| run: | | |
| python manage.py test | |
| env: | |
| SECRET_KEY: ${{ secrets.BASE_KEY }} | |
| SMTP_SERVER: ${{ secrets.SMTP_SERVER }} | |
| SMTP_PASSWORD: ${{ secrets.SMTP_PASSWORD }} | |
| NEW_AES_KEY: ${{ secrets.NEW_AES_KEY }} | |
| DISCORD_CLIENT_SECRET: ${{ secrets.DISCORD_CLIENT_SECRET }} | |
| - name: 📦 Collect Static Files | |
| run: | | |
| python manage.py collectstatic --noinput | |
| env: | |
| SECRET_KEY: ${{ secrets.BASE_KEY }} | |
| SMTP_SERVER: ${{ secrets.SMTP_SERVER }} | |
| SMTP_PASSWORD: ${{ secrets.SMTP_PASSWORD }} | |
| NEW_AES_KEY: ${{ secrets.NEW_AES_KEY }} | |
| DISCORD_CLIENT_SECRET: ${{ secrets.DISCORD_CLIENT_SECRET }} | |
| - name: 🔃 Restart Server | |
| run: | | |
| mkdir tmp | |
| touch tmp/restart.txt | |
| - name: ☁ SFTP Deploy | |
| uses: easingthemes/ssh-deploy@v2 | |
| env: | |
| SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }} | |
| REMOTE_HOST: ${{ secrets.REMOTE_HOST }} | |
| REMOTE_USER: ${{ secrets.REMOTE_USER }} | |
| REMOTE_PORT: 21098 -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedKeyTypes=+ssh-rsa | |
| TARGET: ${{ secrets.REMOTE_TARGET }} |