We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3087994 commit 40fde76Copy full SHA for 40fde76
.circleci/config.yml
@@ -7,13 +7,12 @@ jobs:
7
steps:
8
- checkout # checkout source code to working directory
9
- run:
10
- command: | # create whl and use pipenv to install dependencies
11
- python setup.py sdist bdist_wheel
12
- sudo pip install pipenv
13
- pipenv install dist/fastgrouper-0.1.0-py3-none-any.whl --no-cache-dir
14
- pipenv install pytest
+ command: | # Install package
+ python3 -m venv build_test
+ source build_test/bin/activate
+ python3 setup.py install
15
16
- command: | # Run test suite
+ command: | # Run tests
17
pipenv run pytest -s -vv
18
19
workflows:
0 commit comments