From fa9b4a7225c6cb1d3cda06167dc6c8273ef411cb Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 1 May 2022 19:32:09 +0200 Subject: [PATCH] Enabling the pytest runner --- .github/workflows/pytest.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 39ef62c9..c59a98b1 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -8,8 +8,9 @@ jobs: options: --privileged steps: - uses: actions/checkout@v2 - - run: pacman --noconfirm -Syu python python-pip qemu gcc + - run: pacman --noconfirm -Syu python python-pip - run: python -m pip install --upgrade pip + - run: pip install . - run: pip install pytest - name: Test with pytest - run: python -m pytest || exit 0 \ No newline at end of file + run: python -m pytest \ No newline at end of file