-
Notifications
You must be signed in to change notification settings - Fork 59
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
ci: Switch from Travis CI to GitHub Actions #63
Conversation
Also use Codecov instead of Coveralls.
In order to run the software tests, those variables have to be configured correctly. - APIARY_URL - OPS_KEY - OPS_SECRET
# Tests | ||
@pytest.mark.skip(reason="FIXME: Currently fails") | ||
def test_mock_quota_exceeded(all_clients, monkeypatch): | ||
monkeypatch.setattr(all_clients, "__service_url_prefix__", APIARY_URL) | ||
errors = { |
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 test case fails. The reason is:
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: https://opsv31.docs.apiary.io//individual-per-hour-exceeded/publication/docdb/biblio
@gsong: Can you do anything about it, or tell me how I would approach that issue?
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.
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #63 +/- ##
=======================================
Coverage ? 97.41%
=======================================
Files ? 18
Lines ? 425
Branches ? 0
=======================================
Hits ? 414
Misses ? 11
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
1 similar comment
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #63 +/- ##
=======================================
Coverage ? 97.41%
=======================================
Files ? 18
Lines ? 425
Branches ? 0
=======================================
Hits ? 414
Misses ? 11
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
About
We are leaving Travis CI behind, and will switch to GitHub Actions (GHA) instead. Along the lines, we will switch from Coveralls to Codecov.
Problems
We needed to skip the
test_mock_quota_exceeded
test case, because it currently fails.