File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ jobs:
35
35
- name : Base Setup
36
36
uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
37
37
- name : Run the tests
38
- if : ${{ !startsWith(matrix.python-version, 'pypy') }}
38
+ if : ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.python-version, '3.7') }}
39
39
run : hatch run cov:test
40
40
- name : Run the tests on pypy
41
- if : ${{ startsWith(matrix.python-version, 'pypy') }}
41
+ if : ${{ startsWith(matrix.python-version, 'pypy') || startsWith(matrix.python-version, '3.7') }}
42
42
run : hatch run cov:nowarn
43
43
- name : Upload coverage
44
44
run : |
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ async def test_watch_helper():
33
33
helper .wait ()
34
34
35
35
36
- def test_process_app ():
36
+ async def test_process_app ():
37
37
class TestApp (ProcessApp ):
38
38
name = "tests"
39
39
You can’t perform that action at this time.
0 commit comments