File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
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 :
@@ -116,21 +116,19 @@ jobs:
116116name : Set up Python ${{ matrix.python-version }} 
117117 uses : actions/setup-python@v2 
118118 if : steps.release.outputs.version == 0 
119-  with :
120-  python-version : ${{ matrix.python-version }} 
121119
122120 - name : Install Python Deps 
123121 if : steps.release.outputs.version == 0 
124122 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] 
127125
128126name : Test 
129127 if : steps.release.outputs.version == 0 
130128 env :
131129 PGVERSION : ${{ matrix.postgres-version }} 
132130 run : | 
133-  python setup.py test  
131+  python -m unittest -v tests.suite  
134132
135133#  This job exists solely to act as the test job aggregate to be
136134 #  targeted by branch policies.
                         You can’t perform that action at this time. 
           
                  
0 commit comments