diff options
author | Valentin Rothberg <vrothberg@suse.com> | 2018-03-13 16:36:40 +0100 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-13 17:18:23 +0000 |
commit | 3fe87b011dd2b65b9d502a5195221666b7b140dd (patch) | |
tree | 3e841d51ca07a1d747ff8d8a82c67313da447992 /test/README.md | |
parent | ce30acf1a0de78ad335652f8e34070f8850c68d1 (diff) | |
download | podman-3fe87b011dd2b65b9d502a5195221666b7b140dd.tar.gz podman-3fe87b011dd2b65b9d502a5195221666b7b140dd.tar.bz2 podman-3fe87b011dd2b65b9d502a5195221666b7b140dd.zip |
make shell: build, test and run in a container
Some of the paths in the e2e tests are hard-coded, which complicates
testing a bit on systems with different paths for runc, conmon, etc.
Add a make shell target to the Makefile, which will build and run the
libpod containers, giving a shell to the user in which podman can be
built, run, tested etc.
Signed-off-by: Valentin Rothberg <vrothberg@suse.com>
Closes: #481
Approved by: rhatdan
Diffstat (limited to 'test/README.md')
-rw-r--r-- | test/README.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/README.md b/test/README.md index 018c453ad..9e7ae4577 100644 --- a/test/README.md +++ b/test/README.md @@ -57,3 +57,12 @@ make integration.fedora This will run lint, git-validation, and gofmt tests and then execute unit and integration tests as well. + +### Run tests in a container +In case you have issue running the tests locally on your machine, you can run +them in a container: +``` +make shell +``` + +This will run a container and give you a shell and you can follow the instructions above. |