Skip to content

Commit 94823fe

Browse files
authored
Fix test_process_app (#367)
1 parent f595e70 commit 94823fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
- name: Base Setup
3636
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
3737
- name: Run the tests
38-
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
38+
if: ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.python-version, '3.7') }}
3939
run: hatch run cov:test
4040
- 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') }}
4242
run: hatch run cov:nowarn
4343
- name: Upload coverage
4444
run: |

tests/test_process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async def test_watch_helper():
3333
helper.wait()
3434

3535

36-
def test_process_app():
36+
async def test_process_app():
3737
class TestApp(ProcessApp):
3838
name = "tests"
3939

0 commit comments

Comments
 (0)