Skip to content

Commit 0a6dfae

Browse files
committed
Activate virtualenv correctly
1 parent 7676ffb commit 0a6dfae

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 venv
23-
./venv/bin/activate
23+
source 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+
source venv/bin/activate
3030
nose2 -v
3131
- run:
3232
name: Lint
3333
command: |
34-
./venv/bin/activate
34+
source venv/bin/activate
3535
flake8 datadog_lambda/
3636
3737
- save_cache:

0 commit comments

Comments
 (0)