Skip to content

Commit 68d6843

Browse files
authored
Merge pull request #114 from Pressio/113-fix-error-not-found-ci-failures
#113: fix `ERROR: not found` CI failures
2 parents 59b0da4 + 608d7ab commit 68d6843

File tree

3 files changed

+6
-53
lines changed

3 files changed

+6
-53
lines changed

.github/workflows/docs.yaml

-50
This file was deleted.

.github/workflows/install-and-test.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: Install and test romtools
22

33
on:
44
push:
5-
branches: [develop]
5+
branches:
6+
- develop
67
pull_request:
7-
branches: [develop]
8+
branches:
9+
- develop
810

911
concurrency:
1012
group: ${{ github.event.repository.name }}-${{ github.ref }}-${{ github.workflow }}

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ requires-python = ">=3.8"
99
dependencies = [
1010
'docutils', 'importlib-metadata',
1111
'numpy', 'scipy', 'matplotlib', 'pdoc',
12-
'pytest', 'pytest-mpi>=0.6', 'pytest-timeout'
12+
'pytest==7.4.4', 'pytest-mpi>=0.6', 'pytest-timeout'
1313
]
14+
# using pytest>=8.0.0 causes CI failures (likely compatibility issues with pytest-mpi)
1415

1516
[tool.setuptools.dynamic]
1617
version = {file = "version.txt"}

0 commit comments

Comments
 (0)