From 9c3a072fba99f0d610478bec5b44b90861560851 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 15 Oct 2022 22:55:30 +0200 Subject: workflows/ci: use pip install -e . Don't use the requirements.txt file; it doesn't fit all Python versions. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') 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 -- cgit v1.2.3