Skip to content

Commit 7f323b8

Browse files
author
Justin Merrell
committed
fix: added test timeout
1 parent ed528f3 commit 7f323b8

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/CI_tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: CI | Unit Tests
33
on:
44
push:
55
branches:
6-
- '**'
7-
- 'master'
8-
- '!master-ci'
9-
- '!release'
6+
- "**"
7+
- "master"
8+
- "!master-ci"
9+
- "!release"
1010

1111
pull_request:
1212
branches:
@@ -31,7 +31,8 @@ jobs:
3131
python -m pip install --upgrade pip
3232
python setup.py install
3333
pip install pytest
34+
pip install pytest-timeout
3435
3536
- name: Run Tests
3637
run: |
37-
pytest
38+
pytest --timeout=60 --timeout_method=thread

0 commit comments

Comments
 (0)