From 5e56c0f14e3ec78844d97cad4086fad956307054 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 28 Jul 2020 07:25:36 -0400 Subject: [PATCH] install pytest and bottle manually --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 36903f42..21216a35 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,7 +62,8 @@ jobs: - name: Install dependencies run: | python3 -m venv .venv - ./.venv/bin/python -m pip install -e '.[dev]' + ./.venv/bin/python -m pip install . + ./.venv/bin/python -m pip install pytest bottle - name: Test built package with pytest run: |