Skip to content
This repository has been archived by the owner on Feb 21, 2022. It is now read-only.

Commit

Permalink
Merge branch 'garth/feature-circleci-testing'
Browse files Browse the repository at this point in the history
  • Loading branch information
garth-wells committed Nov 17, 2017
2 parents 20bc75f + 79b5e11 commit 9a2023d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6
working_directory: ~/fiat-test
steps:
- checkout
- run:
name: Install dependencies # Install with sudo as tests not run as superuser in circleci/python
command: sudo pip install flake8 pytest six numpy sympy --upgrade
- run:
name: Install FIAT
command: pip install . --user
- run:
name: Run flake8 tests
command: python -m flake8 .
- run:
name: Run unit tests
command: DATA_REPO_GIT="" python -m pytest -v test/

0 comments on commit 9a2023d

Please sign in to comment.