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 /.github | |
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 '.github')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08479c3946..4b2ec43e6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,8 +139,8 @@ jobs: build-ui: false github-token: ${{ secrets.GITHUB_TOKEN }} - - name: Run smoke test - run: ansible-playbook tools/docker-compose/ansible/smoke-test.yml -v + - name: Run live dev env tests + run: docker exec tools_awx_1 /bin/bash -c "make live_test" awx-operator: runs-on: ubuntu-latest |