Skip to content

Commit f2fae50

Browse files
committed
CI Action: Use poetry
1 parent 6a3e7c3 commit f2fae50

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/libtmux-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ jobs:
4343
python-version: ${{ matrix.python-version }}
4444
- name: Install python dependencies
4545
run: |
46-
python -m pip install --upgrade pip pipenv setuptools
47-
pipenv install -d --system --skip-lock
46+
python -m pip install --upgrade poetry
47+
poetry install
4848
- name: Lint with flake8
4949
run: |
50-
pipenv run flake8
50+
poetry run flake8
5151
- name: Test with pytest
5252
continue-on-error: ${{ matrix.tmux-version == 'master' }}
5353
run: |
5454
export PATH=$HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin:$PATH
5555
ls $HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin
5656
tmux -V
57-
pipenv run py.test --cov=./ --cov-report=xml
57+
poetry run py.test --cov=./ --cov-report=xml
5858
- uses: codecov/codecov-action@v1
5959
with:
6060
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)