From 97a217d36ec1393b380d4a797b5b7ceb68e824ec Mon Sep 17 00:00:00 2001 From: marlenedavitorialobo Date: Mon, 7 Jun 2021 10:38:31 +0100 Subject: [PATCH] Dont run gui tests in gha --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 445d7fc5..ab1bd47b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,7 +54,10 @@ jobs: - name: Test shell: bash -l {0} - run: pytest + run: | + export MPLBACKEND="ps" + python -c 'import matplotlib.pyplot as plt; print(plt.get_backend())' + pytest --ignore skan/gui.py - name: Coverage if: runner.os == 'Linux' && matrix.python == '3.9'