File tree 1 file changed +5
-7
lines changed 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 71
71
LOOP_IMPL : ${{ matrix.loop }}
72
72
run : |
73
73
if [ "${LOOP_IMPL}" = "uvloop" ]; then
74
- env USE_UVLOOP=1 python setup.py test
74
+ env USE_UVLOOP=1 python -m unittest -v tests.suite
75
75
else
76
- python setup.py test
76
+ python -m unittest -v tests.suite
77
77
fi
78
78
79
79
test-postgres :
@@ -116,21 +116,19 @@ jobs:
116
116
- name : Set up Python ${{ matrix.python-version }}
117
117
uses : actions/setup-python@v2
118
118
if : steps.release.outputs.version == 0
119
- with :
120
- python-version : ${{ matrix.python-version }}
121
119
122
120
- name : Install Python Deps
123
121
if : steps.release.outputs.version == 0
124
122
run : |
125
- python -m pip install -U pip setuptools
126
- pip install -e .[test]
123
+ python -m pip install -U pip setuptools wheel
124
+ python -m pip install -e .[test]
127
125
128
126
- name : Test
129
127
if : steps.release.outputs.version == 0
130
128
env :
131
129
PGVERSION : ${{ matrix.postgres-version }}
132
130
run : |
133
- python setup.py test
131
+ python -m unittest -v tests.suite
134
132
135
133
# This job exists solely to act as the test job aggregate to be
136
134
# targeted by branch policies.
You can’t perform that action at this time.
0 commit comments