Skip to content

Commit c53d97a

Browse files
committed
Merge branch 'dev' into 296-ensure-all-examples-are-up-to-date-and-verified
2 parents 43144b6 + 7ee5774 commit c53d97a

File tree

8 files changed

+13
-11
lines changed

8 files changed

+13
-11
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']

poetry.lock

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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
]

tests/refactor/test_run_class.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def test_save_file(
409409
if empty_file:
410410
assert (
411411
variable.out
412-
== "WARNING: saving zero-sized files not currently supported\n"
412+
== "[simvue] WARNING: saving zero-sized files not currently supported\n"
413413
)
414414

415415

0 commit comments

Comments
 (0)