Skip to content

Commit

Permalink
Update django_tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DanilZmievskiy authored Nov 17, 2023
1 parent 5ab04a8 commit 9138292
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/django_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,18 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
python-version: "3.9"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python .manage.py test
python ./PolygonScoring/manage.py test
python ./PolygonLeaderBoards/manage.py test

0 comments on commit 9138292

Please sign in to comment.