Files
requests3/.circleci/config.yml
T
2019-04-19 11:50:40 -04:00

14 lines
383 B
YAML

# Use the latest 2.1 version of CircleCI pipeline processing engine, see https://circleci.com/docs/2.0/configuration-reference/
version: 2.1
jobs:
build:
docker:
- image: circleci/python:3.6.2-stretch-browsers
steps:
- checkout
- run: pip install --upgrade pipenv
- run: pipenv install --sytem --dev
- tests
- run: python setup.py test