Skip to content

Commit 11fd5e8

Browse files
committed
fix: test dependencies
1 parent fdb401f commit 11fd5e8

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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: |

CLAUDE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
4448
pytest test_easymotion.py -v --cache-clear
4549
```
4650

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
7377
pytest test_easymotion.py -v --cache-clear
7478
```
7579

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pytest>=7.0.0

0 commit comments

Comments
 (0)