updated requirement files and changelog #61
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: pytest | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.x" | |
- name: install dependencies | |
run: | | |
git clone https://bitbucket.org/mbradle/liblvls_xsd.git lvlspy/xsd_pub | |
python -m pip install --upgrade pip | |
pip install pytest requests | |
pip install -e . | |
- name: run test | |
run: | | |
pytest -v .github/workflows/lvlspy_test.py |