Change test file to have updated version of progress bar #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push Event Workflow | |
on: push | |
jobs: | |
unit-testing: | |
runs-on: windows-latest | |
steps: | |
- name : Checkout code | |
uses : actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r ./installation_and_upgrade/requirements.txt | |
- name : Run tests | |
working-directory: ./installation_and_upgrade | |
run: | | |
pip install pytest | |
python -m pytest |