Skip to content

Final Stoichiometry Updates with 2 new SQL tables #173

Final Stoichiometry Updates with 2 new SQL tables

Final Stoichiometry Updates with 2 new SQL tables #173

Workflow file for this run

name: main
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Ubuntu prerequisites
run: sudo apt install libmysqlclient-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
mv env.example .env
python manage.py test accounts.tests materials.tests.ModelsTestCase