diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d84fcae..c2e6ab3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v1 - name: Install Python 3.7 run: | - apt install python3-distutils python3-dev python3-distutils -y -qq + sudo apt install python3-distutils python3-dev python3-distutils -y -qq - name: Install Pipenv! run: | curl -s --retry 3 https://bootstrap.pypa.io/get-pip.py > /tmp/get-pip.py @@ -18,7 +18,7 @@ jobs: rm -fr /tmp/get-pip.py - name: Install dependencies run: | - pipenv install --system --dev + pipenv install --dev - name: Test with pytest run: | - pytest + pipenv run pytest