Skip to content

Commit 7027901

Browse files
committed
removing sudo
1 parent 213ba2c commit 7027901

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ python:
77
before_script:
88
- curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | tar -zxvf- -C $HOME/bin
99
- testspace config url samples.testspace.com
10-
- sudo pip install -r requirements.txt
11-
- sudo apt-get install pylint
10+
- pip install -r requirements.txt
11+
- apt-get install pylint
1212

1313
script:
1414
- pylint stock_alerter/ -f parseable > analysis.txt || true

shippable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ build:
88
- mkdir -p $HOME/bin
99
- curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | tar -zxvf- -C $HOME/bin
1010
- testspace config url samples.testspace.com
11-
- sudo pip install -r requirements.txt
12-
- sudo apt-get install pylint
11+
- pip install -r requirements.txt
12+
- apt-get install pylint
1313
- pylint stock_alerter/ -f parseable > analysis.txt || true
1414
- nose2 --junit-xml --with-coverage
1515

0 commit comments

Comments
 (0)