Make acceptance tests internal#2786
Conversation
Do not expose acceptance tests packages externally. This has the added benefit of go-apidiff no longer reporting false positive when analyzing for backward incompatible changes.
It previously generated an error due to the `ACCEPTANCE_TESTS` variable being undefined. It now runs all acceptance tests.
f90c131 to
7bec78e
Compare
|
We are extending the acceptance tests for our sap specific additions from some of those packages. Could those be moved back? Specifically |
If I understand your case correctly, you maintain a domain-specific extension of Gophercloud; to test it, you extend Gophercloud's acceptance tests in parallel. Is that what's happening here? What we want is to remove the acceptance tests from the API surface of Gophercloud. Moving the packages to an One alternative to using |
Yes
Yeah, that should work, too. |
Do not expose acceptance tests packages externally. This has the added benefit of go-apidiff no longer reporting false positive when analyzing for backward incompatible changes.