mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 18:09:57 -03:30
* Add no cov on fail flag to fix CI * Bump django to 4.2.21 * Coverage args * Try cov equals awx * Run migration test in parallel * Ignore error and clean up commands * Try to make schema check not hang --------- Co-authored-by: Satoe Imaishi <simaishi@redhat.com>
13 lines
131 B
Bash
Executable File
13 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
cd /awx_devel
|
|
make clean
|
|
make awx-link
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
make test
|
|
else
|
|
make "$@"
|
|
fi
|