Skip to content

Commit

Permalink
fix: warning fix added
Browse files Browse the repository at this point in the history
  • Loading branch information
zubairshakoorarbisoft committed Sep 21, 2023
1 parent a90d5f1 commit 7036d09
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@ jobs:
max-parallel: 4
matrix:
python-version: ['py38']
django-version: ['django32', django42]
django-version: ['django32', 'django42']
db-version: ['mysql57', 'mysql80']
# excluding mysql5.7 with Django 4.2 since Django 4.2 has
# dropped support for MySQL<8
exclude:
- django-version: 'django42'
db-version: 'mysql57'

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .travis/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ export DJANGO_SETTINGS_MODULE=notesserver.settings.test

cd /edx/app/edx_notes_api/edx_notes_api

make validate
make test

0 comments on commit 7036d09

Please sign in to comment.