diff --git a/.circleci/config.yml b/.circleci/config.yml index 2544f2e..b452563 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,9 +31,9 @@ jobs: - run: name: Install dependencies command: | - pip install --upgrade pip - pip install docker-compose - pip install requests + python3 -m pip install --upgrade pip + python3 -m pip install docker-compose + python3 -m pip install requests - run: name: Set-up dockereve command: | @@ -49,7 +49,7 @@ jobs: command: docker-compose -f dockereve-master/docker-compose.yml up -d - run: name: Test MRIQC WebAPI - command: python test/testGetPost.py + command: python3 test/testGetPost.py workflows: version: 2