Skip to content

Delete requirements.txt #16

Delete requirements.txt

Delete requirements.txt #16

Workflow file for this run

# This workflow will run tests to ensure HydroGenerate is working
name: Test HydroGenerate
on:
push:
branches:
- main
- jugc-pytest
pull_request:
branches:
- main
- jugc-pytest
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Test with pytest and report coverage
run: |
cd tests
coverage run -m pytest
coverage report -m
cd ..