Skip to content

Commit edc7195

Browse files
author
Alec Clowes
committed
version updates
1 parent f429450 commit edc7195

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.circleci/config.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@ jobs:
1414
- v3-{{ checksum "frontend/yarn.lock" }}-{{ checksum "setup.py" }}
1515
- v3-{{ checksum "frontend/yarn.lock" }}
1616
- v3
17-
- run: pwd && ls -la
18-
- run: python -m venv venv && source venv/bin/activate && pip install -e .[test]
17+
- run: pip install -e .[test]
1918
- run: cd frontend && yarn install
2019
- save_cache:
2120
key: v3-{{ checksum "frontend/yarn.lock" }}-{{ checksum "setup.py" }}
2221
paths:
2322
- frontend/node_modules
24-
- pyenv
25-
- run: source pyenv/bin/activate && flake8 yawn
23+
- run: flake8 yawn
2624
- run:
2725
name: yarn test
2826
command: mkdir -p reports/javascript && cd frontend &&
@@ -31,7 +29,7 @@ jobs:
3129
- run:
3230
name: pytest yawn
3331
command: until echo > /dev/tcp/localhost/5432; do sleep 1; done &&
34-
mkdir -p reports/python && source pyenv/bin/activate &&
32+
mkdir -p reports/python &&
3533
pytest --cov=yawn --cov-report xml --cov-report term --junitxml=reports/python/pytest.xml yawn
3634
# check that building works:
3735
- run: cd frontend && yarn build

0 commit comments

Comments
 (0)