File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
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 :
@@ -122,15 +122,15 @@ jobs:
122
122
- name : Install Python Deps
123
123
if : steps.release.outputs.version == 0
124
124
run : |
125
- python -m pip install -U pip setuptools
126
- pip install -e .[test]
125
+ python -m pip install -U pip setuptools wheel
126
+ python -m pip install -e .[test]
127
127
128
128
- name : Test
129
129
if : steps.release.outputs.version == 0
130
130
env :
131
131
PGVERSION : ${{ matrix.postgres-version }}
132
132
run : |
133
- python setup.py test
133
+ python -m unittest -v tests.suite
134
134
135
135
# This job exists solely to act as the test job aggregate to be
136
136
# targeted by branch policies.
You can’t perform that action at this time.
0 commit comments