-
Notifications
You must be signed in to change notification settings - Fork 6
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
Fix docker action so that it can run test_version.py #298
base: master
Are you sure you want to change the base?
Conversation
I have printed the contents of the folder where the package gets installed and I can see it contains the version.py file, so that is definitely being made. I tested creating an environment locally from that environment.yml that the docker uses, and then pip installing and running the tests with pytest and I had no issues. I don't understand this at all. |
The only other thing I can think to do is have this action run after the conda action and install the viewer from the built conda package artifact |
It looks like python does not find the file. |
I made the action upload the artifact of the docker image, downloaded it, ran locally and the version test failed there too |
Previously, the docker action skipped running the
test_version.py
test as this was failing.