https://github.com/dennwc/testproxy
Replay remote Go tests as an output of local Go test
https://github.com/dennwc/testproxy
Last synced: 3 months ago
JSON representation
Replay remote Go tests as an output of local Go test
- Host: GitHub
- URL: https://github.com/dennwc/testproxy
- Owner: dennwc
- License: mit
- Created: 2018-10-25T14:48:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-15T00:32:25.000Z (over 6 years ago)
- Last Synced: 2025-03-10T19:13:10.295Z (3 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go test proxy
This package provides a way to proxy remote Go test results to the local
Go test.Check an example of [local](./example/local) and [remote](./example/remote)
tests.Requires Go installed on the host.
## Why?
Sometimes it's useful to compile a test binary for a different platform
using Go test on the host, and then execute it in some emulator or
isolated environment (VM/Docker).This library provides a way to write Go test that sets up an environment,
compiles the remote test, executes it on remote and streams sub-test
results back to the host.## License
MIT