From 9c1e6d679226a453a38038893049b589765c600c Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Thu, 20 Jul 2023 12:10:35 -0400 Subject: [PATCH] test: add editable test --- .github/workflows/tests.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c75c8e21..f88d3657 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -46,3 +46,16 @@ jobs: pip install . - name: Run tests run: pytest + pytest-editable: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Install + run: | + sudo apt-get install sox + python -m pip install --upgrade pip + pip install -r requirements.dev.txt + pip install -e . + - name: Run tests + run: pytest