diff options
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | requirements.txt | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1555d7..745c1f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,8 +32,8 @@ jobs: uses: actions/setup-python@v4 with: python-version: '${{ matrix.python-version }}' - - name: Install dependencies - run: pip install -q -r requirements.txt + - name: 'Install package & dependencies' + run: pip install -q -e . - name: Run tests run: ./test/bin/main.sh diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 6ccafc3..0000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -matplotlib |