File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,12 @@ jobs:
2626 with :
2727 python-version : ${{ matrix.python-version }}
2828 cache : ' pip'
29+ cache-dependency-path : ' requirements-dev.txt'
2930
3031 - name : Install dependencies
3132 run : |
3233 python -m pip install --upgrade pip
33- pip install pytest
34+ pip install -r requirements-dev.txt
3435
3536 - name : Run tests
3637 run : |
Original file line number Diff line number Diff line change @@ -41,6 +41,10 @@ User input flows through a temporary file (created by `mktemp`) to handle the in
4141
4242### Running Tests
4343``` bash
44+ # First time: Install development dependencies
45+ pip install -r requirements-dev.txt
46+
47+ # Run tests
4448pytest test_easymotion.py -v --cache-clear
4549```
4650
Original file line number Diff line number Diff line change @@ -70,6 +70,10 @@ bind-key -T copy-mode-vi V send-keys -X select-line;
7070### Run tests
7171
7272``` bash
73+ # Install development dependencies
74+ pip install -r requirements-dev.txt
75+
76+ # Run tests
7377pytest test_easymotion.py -v --cache-clear
7478```
7579
Original file line number Diff line number Diff line change 1+ pytest >= 7.0.0
You can’t perform that action at this time.
0 commit comments