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
WE2E tests should add jobs to cron.
It seems that WE2E tests are only adding jobs to cron when crontab already exists in the system.
Remove crontab with crontab -r and try to run any WE2E test.
crontab -r
if ! crontab -l &> /dev/null ; then # if crontab does not exist, create a black crontab echo "" | crontab - fi
The text was updated successfully, but these errors were encountered:
Thanks for reporting this issue! I was able to replicate it on Hera and will incorporate a fix into my draft test improvements PR #871
Sorry, something went wrong.
mkavulich
Successfully merging a pull request may close this issue.
Expected behavior
WE2E tests should add jobs to cron.
Current behavior
It seems that WE2E tests are only adding jobs to cron when crontab already exists in the system.
Steps To Reproduce
Remove crontab with
crontab -r
and try to run any WE2E test.
Detailed Description of Fix
The text was updated successfully, but these errors were encountered: