@@ -24,16 +24,17 @@ jobs:
2424
2525 - name : Execute tests
2626 run : |
27- pip install -U pip poetry tox
28- poetry install
29-
30- export TOXENV=${{ matrix.toxenv }}
31- export PYTHON=${{ matrix.python-version }}
32- tox
27+ pip install -U pip poetry tox
28+ poetry install
3329
30+ export TOXENV=${{ matrix.toxenv }}
31+ export PYTHON=${{ matrix.python-version }}
32+ tox
3433
3534 test :
36- name : test latest / Django@${{ matrix.django-version }} / Python@${{ matrix.python-version }}
35+ name :
36+ test latest / Django@${{ matrix.django-version }} / Python@${{
37+ matrix.python-version }}
3738 runs-on : ubuntu-latest
3839 strategy :
3940 fail-fast : false
@@ -50,26 +51,28 @@ jobs:
5051
5152 - name : Execute tests
5253 run : |
53- pip install -U pip poetry tox
54- poetry install
54+ pip install -U pip poetry tox
55+ poetry install
5556
56- export DJANGO=${{ matrix.django-version }}
57- export PYTHON=${{ matrix.python-version }}
58- export TOXENV=$(echo py${{ matrix.python-version }}-django${{ matrix.django-version }} | tr -d .)
59- tox
57+ export DJANGO=${{ matrix.django-version }}
58+ export PYTHON=${{ matrix.python-version }}
59+ export TOXENV=$(echo py${{ matrix.python-version }}-django${{ matrix.django-version }} | tr -d .)
60+ tox
6061
6162 - name : Coveralls
6263 env :
6364 COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
6465 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
6566 run : |
66- pip install coveralls
67- coveralls --service=github
67+ pip install coveralls
68+ coveralls --service=github
6869
69- test_deprecated : # testing older versions of python+django
70- name : test old stuff / Django@${{ matrix.django-version }} / Python@${{ matrix.python-version }}
70+ test_deprecated : # testing older versions of python+django
71+ name :
72+ test old stuff / Django@${{ matrix.django-version }} / Python@${{
73+ matrix.python-version }}
7174 runs-on : ubuntu-latest
72- strategy : # TODO: use a YAML anchor - not supported in GitHub actions "yet"
75+ strategy : # TODO: use a YAML anchor - not supported in GitHub actions "yet"
7376 fail-fast : false
7477 matrix :
7578 python-version : [3.7, 3.8, 3.9]
@@ -84,21 +87,21 @@ jobs:
8487
8588 - name : Execute tests
8689 run : |
87- pip install -U pip poetry tox
88- poetry install
90+ pip install -U pip poetry tox
91+ poetry install
8992
90- export DJANGO=${{ matrix.django-version }}
91- export PYTHON=${{ matrix.python-version }}
92- export TOXENV=$(echo py${{ matrix.python-version }}-django${{ matrix.django-version }} | tr -d .)
93- tox
93+ export DJANGO=${{ matrix.django-version }}
94+ export PYTHON=${{ matrix.python-version }}
95+ export TOXENV=$(echo py${{ matrix.python-version }}-django${{ matrix.django-version }} | tr -d .)
96+ tox
9497
9598 - name : Coveralls
9699 env :
97100 COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
98101 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
99102 run : |
100- pip install coveralls
101- coveralls --service=github
103+ pip install coveralls
104+ coveralls --service=github
102105
103106 build_and_package_sanity :
104107 runs-on : ubuntu-latest
@@ -115,6 +118,6 @@ jobs:
115118
116119 - name : Build
117120 run : |
118- pip install -U pip poetry tox
119- poetry install
120- ./scripts/build.sh
121+ pip install -U pip poetry tox
122+ poetry install
123+ ./scripts/build.sh
0 commit comments