Skip to content

tests and strengthened conversions #45

tests and strengthened conversions

tests and strengthened conversions #45

Workflow file for this run

name: AgriNet CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
runtests:
name: pip
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover -q agrinet/tests