File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments