Skip to content

Commit 40fde76

Browse files
author
sjoshistrats
authored
Update config.yml
1 parent 3087994 commit 40fde76

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@ jobs:
77
steps:
88
- checkout # checkout source code to working directory
99
- 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
10+
command: | # Install package
11+
python3 -m venv build_test
12+
source build_test/bin/activate
13+
python3 setup.py install
1514
- run:
16-
command: | # Run test suite
15+
command: | # Run tests
1716
pipenv run pytest -s -vv
1817
1918
workflows:

0 commit comments

Comments
 (0)