summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2019-02-09 11:27:04 -0500
committerTomSweeneyRedHat <tsweeney@redhat.com>2019-02-09 11:28:13 -0500
commit931af00bb0a637022c815599e0376e5f00e2a424 (patch)
tree7364d7190127846c8618a4a489d4a9882e9c011f /test
parentc86e8f180c8b0cdbd1bafe327c4671370096c45f (diff)
downloadpodman-931af00bb0a637022c815599e0376e5f00e2a424.tar.gz
podman-931af00bb0a637022c815599e0376e5f00e2a424.tar.bz2
podman-931af00bb0a637022c815599e0376e5f00e2a424.zip
Add common_test.go to single test instructions
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com> Add e2e/test/common_test.go to the single integration test instructions. Without it the documented process fails.
Diffstat (limited to 'test')
-rw-r--r--test/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/README.md b/test/README.md
index 90dcdfe3d..ef3bfbcf9 100644
--- a/test/README.md
+++ b/test/README.md
@@ -66,7 +66,7 @@ switch is optional.
You can run a single file of integration tests using the go test command:
```
-GOPATH=~/go go test -v test/e2e/libpod_suite_test.go test/e2e/config.go test/e2e/config_amd64.go test/e2e/your_test.go
+GOPATH=~/go go test -v test/e2e/libpod_suite_test.go test/e2e/common_test.go test/e2e/config.go test/e2e/config_amd64.go test/e2e/your_test.go
```
#### Run all tests like PAPR