diff options
author | Alan Rominger <arominge@redhat.com> | 2024-12-06 15:20:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-06 15:20:26 +0100 |
commit | 1a35775c25f688fbdf3fd9b6914605e119185aba (patch) | |
tree | ffbba6f83ff09aad197a31a01017b75a688901f5 /Makefile | |
parent | Update defaults.py receptor typo (#15682) (diff) | |
download | awx-1a35775c25f688fbdf3fd9b6914605e119185aba.tar.xz awx-1a35775c25f688fbdf3fd9b6914605e119185aba.zip |
Create a new pytest folder for live system testing with normal services (#15688)
* PoC for running dev env tests
* Replace in github actions
* Try non interactive
* Move folder to better location
* Further streamlining of new test folders
* Consolidate fixture, add writeup docs
* Use star import
* Push the wait-for-job to the conftest
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -350,6 +350,9 @@ test: cd awxkit && $(VENV_BASE)/awx/bin/tox -re py3 awx-manage check_migrations --dry-run --check -n 'missing_migration_file' +live_test: + cd awx/main/tests/live && py.test tests/ + ## Run all API unit tests with coverage enabled. test_coverage: $(MAKE) test PYTEST_ARGS="--create-db --cov --cov-report=xml --junitxml=reports/junit.xml" |