summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAlan Rominger <arominge@redhat.com>2024-12-06 15:20:26 +0100
committerGitHub <noreply@github.com>2024-12-06 15:20:26 +0100
commit1a35775c25f688fbdf3fd9b6914605e119185aba (patch)
treeffbba6f83ff09aad197a31a01017b75a688901f5 /Makefile
parentUpdate defaults.py receptor typo (#15682) (diff)
downloadawx-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--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e9a1495644..3bf198f417 100644
--- a/Makefile
+++ b/Makefile
@@ -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"