trying to fix workflow tests #60
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] | |
jobs: | |
SpyDrNet_TMR_push: | |
name: SpyDrNet-TMR Push | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: | |
- "3.6" | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@master | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install requests networkx pytest | |
cd ~/ | |
git clone https://github.com/byuccl/spydrnet.git | |
cd spydrnet | |
git checkout next_release | |
pip install -e spydrnet | |
cd ~/spydrnet-tmr | |
- name: Run Pytest for SpyDrNet-TMR | |
run: | | |
y | pytest -v -s |