diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-03 10:02:40 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-03 10:02:43 +0100 |
commit | d10b1c76313293adf24ff835367017d9ca3ecd4f (patch) | |
tree | 678ba30884aef53e0f95156b5731566e68bb72eb /.github/workflows/ci.yml | |
parent | packaging: move to pyproject.toml-only (diff) | |
download | vk-scripts-d10b1c76313293adf24ff835367017d9ca3ecd4f.tar.gz vk-scripts-d10b1c76313293adf24ff835367017d9ca3ecd4f.zip |
get rid of requirements.txt
It contained duplicate info from pyproject.toml.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 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 |