summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2018-03-02 12:59:06 +0100
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-02 13:41:07 +0000
commit656840c9924b0348c7e939b4215f14c5b076842f (patch)
tree26cd13dad088773c3ccac2ce1d47c8f23cd3c4d3 /test
parent546463964e8de7c82f976c9b1808b9867504b4ef (diff)
downloadpodman-656840c9924b0348c7e939b4215f14c5b076842f.tar.gz
podman-656840c9924b0348c7e939b4215f14c5b076842f.tar.bz2
podman-656840c9924b0348c7e939b4215f14c5b076842f.zip
test/README.md: fix path to the tests suite
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> Closes: #436 Approved by: rhatdan
Diffstat (limited to 'test')
-rw-r--r--test/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/README.md b/test/README.md
index 26d7a5444..b3f179181 100644
--- a/test/README.md
+++ b/test/README.md
@@ -36,7 +36,7 @@ GOPATH=~/go go get github.com/onsi/gomega/...
You can run the entire suite of integration tests with the following command:
```
-GOPATH=~/go ginkgo -v tests/e2e/.
+GOPATH=~/go ginkgo -v test/e2e/.
```
Note the trailing period on the command above. Also, **-v** invokes verbose mode. That
@@ -45,7 +45,7 @@ switch is optional.
You can run a single file of integration tests using the go test command:
```
-GOPATH=~/go go test -v tests/e2e/libpod_suite_test.go tests/e2e/your_test.go
+GOPATH=~/go go test -v test/e2e/libpod_suite_test.go tests/e2e/your_test.go
```
#### Run all tests like PAPR