diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-15 22:55:30 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-15 22:58:45 +0200 |
commit | 9c3a072fba99f0d610478bec5b44b90861560851 (patch) | |
tree | 2b0561e06d9a05b51e9144fb7f061a0efc62d00c /.github/workflows | |
parent | bump dependencies (diff) | |
download | cgitize-9c3a072fba99f0d610478bec5b44b90861560851.tar.gz cgitize-9c3a072fba99f0d610478bec5b44b90861560851.zip |
workflows/ci: use pip install -e .
Don't use the requirements.txt file; it doesn't fit all Python versions.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05a8f6d..32d6d88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: git config --global user.name 'John Doe' git config --global user.email 'John.Doe@example.com' - name: Install dependencies - run: pip install -r requirements.txt + run: pip install -e . - name: Integration test (local) run: ./test/integration/local/test.sh - name: Unit tests |