mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-05 23:10:16 +00:00
14 lines
383 B
YAML
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
|