Skip to content

Commit 4bca2f3

Browse files
committed
Fixing test script error and remove macos-13 from Github workflows
1 parent ad3693b commit 4bca2f3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
21+
os: [ubuntu-latest, macos-latest, windows-latest]
2222
python-version: ['3.9', '3.10', '3.11']
2323
exclude:
2424
- os: macos-latest

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
15+
os: [ubuntu-latest, macos-latest, windows-latest]
1616
python-version: ["3.9", "3.10", "3.11"]
1717

1818
steps:

deism/tests/test_deism_arg.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ def test_deism_arg_simulation():
2020
deism.update_freqs()
2121
deism.update_source_receiver()
2222
deism.update_directivities()
23-
pressure = deism.run_DEISM()
23+
deism.run_DEISM()
24+
pressure = deism.params["RTF"]
2425

2526
# Basic assertions to verify the simulation ran successfully
2627
assert pressure is not None, "Pressure should not be None"

0 commit comments

Comments
 (0)