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:
43
43
python-version : ${{ matrix.python-version }}
44
44
- name : Install python dependencies
45
45
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
48
48
- name : Lint with flake8
49
49
run : |
50
- pipenv run flake8
50
+ poetry run flake8
51
51
- name : Test with pytest
52
52
continue-on-error : ${{ matrix.tmux-version == 'master' }}
53
53
run : |
54
54
export PATH=$HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin:$PATH
55
55
ls $HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin
56
56
tmux -V
57
- pipenv run py.test --cov=./ --cov-report=xml
57
+ poetry run py.test --cov=./ --cov-report=xml
58
58
- uses : codecov/codecov-action@v1
59
59
with :
60
60
token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments