Commit Graph

3 Commits

Author SHA1 Message Date
Chad Metcalf
199da87b3b
Fixing Linux vs Mac Makefile differences.
Signed-off-by: Chad Metcalf <chad@docker.com>
2020-08-09 21:07:31 -07:00
Chad Metcalf
e059c77a47
Allow testing for just examples with changed files.
The full test suite takes a long time to test. Generally changes in this
repo only will change one project. So lets find the directories with
changes and only test those. By default we will compare against
origin/master which should cover testing PRs. If you're doing
development and want to test your current changes you could do:

BASE_REF=HEAD make test-changed

Or if you're testing against your fork:

BASE_REF=myremote/branch make test-changed

Signed-off-by: Chad Metcalf <chad@docker.com>
2020-08-09 15:09:04 -07:00
Chad Metcalf
702ec96821
Adding a Makefile and basic tests.
This approach uses bats to create a generic docker-compose test. It
checks that images are pullable, projects are buildable, up works, and
if ports are exposed that something is listening.

The tests can be tailored for each example. As long as they are the same
though, you can edit lib/test.bats.example and then `make update-tests`
and all the tests will be synced.

Signed-off-by: Chad Metcalf <chad@docker.com>
2020-08-08 14:26:52 -07:00