File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -48,25 +48,24 @@ jobs:
48
48
libgeos-dev libspatialite-dev spatialite-bin \
49
49
libsqlite3-mod-spatialite
50
50
51
- - name : Upgrade python system packages
52
- run : pip install -U pip wheel setuptools
53
-
54
- - name : Installing module
51
+ - name : Install Dependencies
52
+ id : deps
55
53
run : |
54
+ pip install -U pip wheel setuptools
56
55
pip install -U -e .
57
56
pip install -U ${{ matrix.django-version }}
58
-
59
- - name : Install python dependencies
60
- run : pip install -U -r requirements-test.txt
57
+ pip install -U -r requirements-test.txt
61
58
62
59
- name : QA checks
63
60
run : ./run-qa-checks
64
61
65
62
- name : Tests
63
+ if : ${{ !cancelled() && steps.deps.conclusion == 'success' }}
66
64
run : |
67
65
coverage run --source=owm_legacy runtests.py
68
66
69
67
- name : Upload Coverage
68
+ if : ${{ success() }}
70
69
run : coveralls --service=github
71
70
env :
72
71
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments