summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-03-18 08:55:32 +0100
committerGitHub <noreply@github.com>2022-03-18 08:55:32 +0100
commitfbacaa58ffc5a62456ee68b90efa13957f761ce4 (patch)
tree35dc7e61d2e61bd3fba76695ab65476de935a224 /.github
parent39ae8d740e30c18e46873cf82aff76588f1974c7 (diff)
downloaddjango-fbacaa58ffc5a62456ee68b90efa13957f761ce4.tar.gz
Added packaging tools to GitHub actions.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/schedule_tests.yml4
-rw-r--r--.github/workflows/tests.yml4
2 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/schedule_tests.yml b/.github/workflows/schedule_tests.yml
index 2b43a53e5c..bfd62b1275 100644
--- a/.github/workflows/schedule_tests.yml
+++ b/.github/workflows/schedule_tests.yml
@@ -28,7 +28,9 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'tests/requirements/py3.txt'
- - run: pip install -r tests/requirements/py3.txt -e .
+ - name: Install and upgrade packaging tools
+ run: python -m pip install --upgrade pip setuptools wheel
+ - run: python -m pip install -r tests/requirements/py3.txt -e .
- name: Run tests
run: python tests/runtests.py -v2
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 3798b7dbe1..391c3e080f 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -31,7 +31,9 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'tests/requirements/py3.txt'
- - run: pip install -r tests/requirements/py3.txt -e .
+ - name: Install and upgrade packaging tools
+ run: python -m pip install --upgrade pip setuptools wheel
+ - run: python -m pip install -r tests/requirements/py3.txt -e .
- name: Run tests
run: python tests/runtests.py -v2