Add test verification to ansible-test. (#22636)

* Add unified git diff parser.
* Add metadata and diff handling.
* Add test confidence/verification to bot output.
This commit is contained in:
Matt Clay
2017-03-15 12:17:42 -07:00
committed by GitHub
parent 5e9a2b8528
commit 869449e288
14 changed files with 623 additions and 10 deletions

12
test/runner/Makefile Normal file
View File

@@ -0,0 +1,12 @@
.PHONY: all compile sanity units
all: compile sanity units
compile:
./ansible-test compile test/runner/ ${TEST_FLAGS}
sanity:
./ansible-test sanity test/runner/ ${TEST_FLAGS}
units:
PYTHONPATH=. pytest units ${TEST_FLAGS}