From 640aaab846ae34607d3ce7f4ee166854b42e4b13 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 16 Sep 2019 08:40:42 -0400 Subject: [PATCH] tests --- .github/workflows/tests.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3dda468..64b3d29 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,13 +8,16 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Set up Python 3.7 - uses: actions/setup-python@v1 - with: - python-version: 3.7 + - name: Install Python 3.7 + uses: | + apt install python3-distutils python3-dev python3-distutils -y -qq + - name: Install Pipenv! + uses: | + curl -s --retry 3 https://bootstrap.pypa.io/get-pip.py > /tmp/get-pip.py + python3 /tmp/get-pip.py pipenv > /dev/null + rm -fr /tmp/get-pip.py - name: Install dependencies run: | - python -m pip install --upgrade pip pipenv pipenv install --system --dev - name: Test with pytest run: |