Skip to content

Commit

Permalink
install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bboynton97 committed Apr 1, 2024
1 parent 29ab5b1 commit 4ee8845
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions .github/workflows/python-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,21 @@ jobs:
python-version: [3.11]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pip install pytest
pytest
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install build system requirements
run: |
pip install setuptools wheel
- name: Install dependencies
run: |
pip install requests==2.31.0 psutil==5.9.8
- name: Install optional dependencies (dev)
run: |
pip install pytest==7.4.0 requests_mock==1.11.0
# Install other optional dependencies as needed
- name: Run tests
run: |
pytest

0 comments on commit 4ee8845

Please sign in to comment.