Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

Commit

Permalink
Don't run with shell=True
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolligan committed Oct 24, 2016
1 parent 6f5d227 commit a6a0853
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .flake8

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ before_script:
# run_tests.py runs everything under the script: tag so only put commands
# under it that we want to run (and want to be able to run) as local tests
script:
- flake8 *.py ga4gh_common tests
- flake8 run_tests_dev.py setup.py ga4gh_common tests
- nosetests tests
--with-coverage --cover-package ga4gh_common
--cover-inclusive --cover-min-percentage=70
Expand Down
2 changes: 1 addition & 1 deletion ga4gh_common/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def runTests(self):
testCommands = self.parseTestCommands()
for command in testCommands:
self.log('Running: "{}"'.format(command))
utils.runCommand(command, shell=True)
utils.runCommand(command)
self.log('SUCCESS')

def log(self, logStr):
Expand Down

0 comments on commit a6a0853

Please sign in to comment.