Skip to content

Commit 7ee5774

Browse files
authored
Merge pull request #408 from simvue-io/hotfix/server-tests-in-series
Run CI tests in series
2 parents 422d927 + 77ee4b4 commit 7ee5774

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/citation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 20
15+
timeout-minutes: 30
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python

.github/workflows/test_client_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
build:
14-
timeout-minutes: 20
14+
timeout-minutes: 30
1515
runs-on: macos-latest
1616
steps:
1717
- uses: actions/checkout@v3

.github/workflows/test_client_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
build:
1717

1818
runs-on: ubuntu-latest
19-
timeout-minutes: 20
19+
timeout-minutes: 30
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: Set up Python 3.12

.github/workflows/test_client_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build:
1414
runs-on: windows-latest
15-
timeout-minutes: 20
15+
timeout-minutes: 30
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python 3.12

.github/workflows/test_multiple_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
build:
1616
runs-on: ubuntu-latest
17-
timeout-minutes: 20
17+
timeout-minutes: 30
1818
strategy:
1919
matrix:
2020
python-version: ['3.9', '3.10', '3.11']

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ lint.mccabe.max-complexity = 11
9898
"notebooks/*" = ["T201"]
9999

100100
[tool.pytest.ini_options]
101-
addopts = "-p no:warnings --cov=simvue -n auto"
101+
addopts = "-p no:warnings --cov=simvue -n 0"
102102
testpaths = [
103103
"tests"
104104
]

0 commit comments

Comments
 (0)