Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Codecov fix #2726

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup LFS
uses: ./.github/actions/setup_lfs
- name: Setup environment
uses: ./.github/actions/setup_env
with:
Expand Down
4 changes: 2 additions & 2 deletions tardis/tests/fixtures/regression_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
class RegressionData:
def __init__(self, request) -> None:
self.request = request
if request.config.getoption("--tardis-regression-data") is None:
pytest.skip("--tardis-regression-data was not specified")
regression_data_path = Path(
request.config.getoption("--tardis-regression-data")
)
if regression_data_path is None:
pytest.skip("--tardis-regression-data was not specified")
self.regression_data_path = Path(
os.path.expandvars(regression_data_path.expanduser())
)
Expand Down
Loading