Skip to content

Commit

Permalink
Update PyTest workflow to install dependencies from requirements.txt …
Browse files Browse the repository at this point in the history
…and add codemapper installation
  • Loading branch information
shaneholloman committed Nov 23, 2024
1 parent f2d240e commit eadd431
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools chardet pathspec pytest
pip install -r requirements.txt
pip install pytest
- name: Install codemapper
run: |
pip install .
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pathspec>=0.9.0
chardet>=4.0.0
chardet>=4.0.0

0 comments on commit eadd431

Please sign in to comment.