From e1b39cc4d3cc1eb69d9d9041b1e9e3956b8c7e9f Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sun, 17 Oct 2021 15:46:39 +0200 Subject: [PATCH] ci: use separate steps for pytest install and run --- .github/workflows/integration-test.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 0ce77c3..589a2ee 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -97,9 +97,12 @@ jobs: run: | .github/integration-test.py build-image --build-arg ubuntu_version=${{ matrix.ubuntu_version }} - - name: Run bootstrap checks + - name: Install pytest run: | python3 -m pip install pytest + + - name: Run bootstrap tests + run: | pytest --verbose --maxfail=2 --color=yes --capture=no integration-tests/test_bootstrap.py - name: Run basic tests