Added case insensitivity to edit command. Fixes #17 (#19) #45
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: Run unit tests | |
on: | |
workflow_call: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pytest: | |
name: Runs pytest unit-tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements.txt | |
python -m pip install pytest requests-mock | |
- name: Run pytest | |
run: pytest test/* |