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 7171 LOOP_IMPL : ${{ matrix.loop }} 
7272 run : | 
7373 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  
7575 else 
76-  python setup.py test  
76+  python -m unittest -v tests.suite  
7777 fi 
7878
7979test-postgres :
@@ -122,15 +122,15 @@ jobs:
122122 - name : Install Python Deps 
123123 if : steps.release.outputs.version == 0 
124124 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] 
127127
128128name : Test 
129129 if : steps.release.outputs.version == 0 
130130 env :
131131 PGVERSION : ${{ matrix.postgres-version }} 
132132 run : | 
133-  python setup.py test  
133+  python -m unittest -v tests.suite  
134134
135135#  This job exists solely to act as the test job aggregate to be
136136 #  targeted by branch policies.
                         You can’t perform that action at this time. 
           
                  
0 commit comments