File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : 2
2+ jobs :
3+ build :
4+ working_directory : ~/Clever/discovery-python
5+ docker :
6+ - image : circleci/python:2.7
7+ environment :
8+ CIRCLE_ARTIFACTS : /tmp/circleci-artifacts
9+ CIRCLE_TEST_REPORTS : /tmp/circleci-test-results
10+ steps :
11+ - run : sudo pip install --force-reinstall pip==9.0.3
12+ - run :
13+ command : cd $HOME && git clone --depth 1 -v https://github.com/Clever/ci-scripts.git && cd ci-scripts && git show --oneline -s
14+ name : Clone ci-scripts
15+ - checkout
16+ - run :
17+ command : mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS
18+ name : Set up CircleCI artifacts directories
19+ - run : sudo make deps
20+ - run : sudo make test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33import os
44import sys
55from setuptools import setup , find_packages
6- from pip .req import parse_requirements
7-
6+ try : # for pip >= 10
7+ from pip ._internal .req import parse_requirements
8+ except ImportError : # for pip <= 9.0.3
9+ from pip .req import parse_requirements
810import pkg_resources
911
1012here = os .path .abspath (os .path .dirname (__file__ ))
You can’t perform that action at this time.
0 commit comments