-
Notifications
You must be signed in to change notification settings - Fork 27
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: Fix CI for artifactory tests colliding in parallel run #151
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, nice catch!
But as far as I can tell, isn't this a plugin that would need to be installed first? https://pytest-dev.github.io/pytest-order/stable/intro.html
Yes, you are right. I also checked it beforehand but it seemed to work in my machine and also in the CI. Anyway, I will add it to the pip install call and try to remove some of the warnings in the output as well. Thanks! |
There is currently an issue in the CI for tests that require interacting with Artifactory, as it happened at #150.
Those tests are run in parallel and sometimes they interfere, causing the CI to fail.
This PRs makes those tests run sequentially (unfortunately I did not find a more elegant way to achieve that 😓)