-
Notifications
You must be signed in to change notification settings - Fork 7
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
Release fixes for py3 #348
Conversation
# Application may not be fully available immediately, wait 5 seconds | ||
sleep 5 | ||
# Application may not be fully available immediately, wait 15 seconds | ||
sleep 15 |
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.
I hope this number doesn't keep growing 😅
|
||
curl --fail --silent ${APP_URL}/api/action/status_show?$(date +%s) > /dev/null | ||
[ "403" == "$(curl --silent --output /dev/null --write-out %{http_code} ${APP_URL}/dataset?$(date +%s))" ] | ||
# [ "403" == "$(curl --silent --output /dev/null --write-out %{http_code} ${APP_URL}/dataset?$(date +%s))" ] |
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.
Why was this commented out?
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.
This validates that datagov-inventory extension is installed and the site is not available to the public. Since it's currently not installed, we need to ignore this test for now. We should re-implement once GSA/data.gov#3388 is ready to be merged.
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.
Got it. 👍
Tested against develop cloud.gov space, should be ready for release.
Note that some missing dependencies were not caught in the tests, because the test framework already had core ckan dependencies installed.
Related to GSA/data.gov#3374