-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,10 @@ set -x | |
|
||
# TODO move smoke tests to python | ||
|
||
# Application may not be fully available immediately, wait 5 seconds | ||
sleep 5 | ||
# Application may not be fully available immediately, wait 15 seconds | ||
sleep 15 | ||
|
||
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 commentThe 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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. Got it. 👍 |
||
|
||
echo ok |
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 😅