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
Describe the bug Running make test hangs on the store package and specifically on the url_test.go TestURLReader test.
make test
TestURLReader
To Reproduce Steps to reproduce the behavior:
Expected behavior The test should pass and the test should not be dependent on an internet connection or the outside world.
We should use the httptest package to run a localhost server while running this test.
httptest
The text was updated successfully, but these errors were encountered:
I'll take a look. Another option would be to mock the call to client.Get. Will check if there's a way to do that.
client.Get
Sorry, something went wrong.
Serve and read from local server for url test.
0d5f762
Instead of reading a Github url, this commit starts and local http server and makes the URLReader read from that server. Closes argoproj#70.
Serve and read from local server for url test. (#77)
a1138ed
Instead of reading a Github url, this commit starts and local http server and makes the URLReader read from that server. Closes #70.
Serve and read from local server for url test. (argoproj#77)
ff688f0
shrinandj
No branches or pull requests
Describe the bug
Running
make test
hangs on the store package and specifically on the url_test.goTestURLReader
test.To Reproduce
Steps to reproduce the behavior:
make test
Expected behavior
The test should pass and the test should not be dependent on an internet connection or the outside world.
We should use the
httptest
package to run a localhost server while running this test.The text was updated successfully, but these errors were encountered: