8000 Activate venv correctly · DataDog/datadog-lambda-python@ec0f8a5 · GitHub
[go: up one dir, main page]

Skip to content

Commit ec0f8a5

Browse files
committed
Activate venv correctly
1 parent de70b9b commit ec0f8a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ jobs:
2020
command: |
2121
pip install virtualenv
2222
virtualenv env
23-
venv/bin/activate
23+
./venv/bin/activate
2424
pip install -r requirements.txt
2525
pip install -r requirements-dev.txt
2626
- run:
2727
name: Run Unit Tests
2828
command: |
29-
venv/bin/activate
29+
./venv/bin/activate
3030
nose2 -v
3131
- run:
3232
name: Lint
3333
command: |
34-
venv/bin/activate
34+
./venv/bin/activate
3535
flake8 datadog_lambda/
3636
3737
- save_cache:

0 commit comments

Comments
 (0)
0