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

Amend fix: type call error for AiiDAConfigDir.set #6646

Merged
Merged
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: 1 addition & 1 deletion src/aiida/manage/tests/pytest_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
if configuration.CONFIG is not None:
reset = True
current_config = configuration.CONFIG
current_config_path = current_config.dirpath
current_config_path = pathlib.Path(current_config.dirpath)

Check warning on line 176 in src/aiida/manage/tests/pytest_fixtures.py

View check run for this annotation

Codecov / codecov/patch

src/aiida/manage/tests/pytest_fixtures.py#L176

Added line #L176 was not covered by tests
current_profile = configuration.get_profile()
current_path_variable = os.environ.get(settings.DEFAULT_AIIDA_PATH_VARIABLE, None)

Expand Down
Loading