Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff128 committed Dec 2, 2024
1 parent 932c3a8 commit 5bc83c2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip3 install .[tests]
pip3 install -e .[tests]
- name: Run pytest without Django
env:
PYTEST_ADDOPTS: "--color=yes"
Expand All @@ -30,6 +30,6 @@ jobs:
env:
PYTEST_ADDOPTS: "--color=yes"
run: |
python3 -m install .[tests,django_tests,django]
pip3 install -e .[tests,django_tests,django]
./tests/test_django/manage.py migrate
python3 -m pytest -v -n auto
4 changes: 2 additions & 2 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
python3 -m venv .venv
source .venv/bin/activate
pip install .[tests]
pip install -e .[tests]
- name: Run pytest without Django
env:
PYTEST_ADDOPTS: "--color=yes"
Expand All @@ -42,6 +42,6 @@ jobs:
PYTEST_ADDOPTS: "--color=yes"
run: |
source .venv/bin/activate
pip install .[tests,django_tests,django]
pip install -e .[tests,django_tests,django]
./tests/test_django/manage.py migrate
pytest -v -n auto
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip3 install .[tests]
pip3 install -e .[tests]
- name: Run pytest without Django
env:
PYTEST_ADDOPTS: "--color=yes"
Expand All @@ -30,6 +30,6 @@ jobs:
env:
PYTEST_ADDOPTS: "--color=yes"
run: |
python3 -m install .[tests,django_tests,django]
pip3 install -e .[tests,django_tests,django]
./tests/test_django/manage.py migrate
python3 -m pytest -v -n auto

0 comments on commit 5bc83c2

Please sign in to comment.