diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08479c39469d..b43ee132a3bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,6 +62,9 @@ jobs: AWX_DOCKER_CMD='${{ matrix.tests.command }}' make docker-runner + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + - name: Upload test coverage to Codecov if: >- !cancelled() diff --git a/Makefile b/Makefile index e9a149564489..7c8aa0757a9e 100644 --- a/Makefile +++ b/Makefile @@ -346,7 +346,7 @@ test: if [ "$(VENV_BASE)" ]; then \ . $(VENV_BASE)/awx/bin/activate; \ fi; \ - PYTHONDONTWRITEBYTECODE=1 py.test -p no:cacheprovider $(PYTEST_ARGS) $(TEST_DIRS) + PYTHONDONTWRITEBYTECODE=1 py.test -p no:cacheprovider $(PYTEST_ARGS) $(TEST_DIRS) -k test_inventory_update_injected_content cd awxkit && $(VENV_BASE)/awx/bin/tox -re py3 awx-manage check_migrations --dry-run --check -n 'missing_migration_file' @@ -567,7 +567,8 @@ docker-compose-build: Dockerfile.dev -f Dockerfile.dev \ -t $(DEVEL_IMAGE_NAME) \ --build-arg BUILDKIT_INLINE_CACHE=1 \ - $(DOCKER_DEVEL_CACHE_FLAG) . + . + #$(DOCKER_DEVEL_CACHE_FLAG) . .PHONY: docker-compose-buildx ## Build awx_devel image for docker compose development environment for multiple architectures