We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The pytest fixture simtel_path in conftest.py changes the environment parameters and therefore might lead to errors when accessing the DB.
simtel_path
e.g., the line
def corsika_runner(corsika_config_data, io_handler, simtel_path, db_config):
does not provide any DB access.
The line following line is working fine:
def corsika_runner(corsika_config_data, io_handler, db_config, simtel_path):
This should be improved / fixed.
The text was updated successfully, but these errors were encountered:
This issue was fixed in #822 , but wasn't closed. I am closing it now.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The pytest fixture
simtel_path
in conftest.py changes the environment parameters and therefore might lead to errors when accessing the DB.e.g., the line
does not provide any DB access.
The line following line is working fine:
This should be improved / fixed.
The text was updated successfully, but these errors were encountered: