Skip to content

Commit

Permalink
feat(dev): temp circleci config;
Browse files Browse the repository at this point in the history
- Added temp circle CI config file.
  • Loading branch information
JVickery-TBS committed Sep 14, 2023
1 parent 2b1311e commit 3a5b9cf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
jobs:
build:
docker:
- image: circleci/python:2-stretch-browsers
steps:
- checkout
- run: virtualenv venv
- run: venv/bin/pip install nose==1.3.7
- run: venv/bin/nosetests

workflows:
version: 2
build_and_test:
jobs:
- build

0 comments on commit 3a5b9cf

Please sign in to comment.