Try to make pip and pipenv use the installed python version

This commit is contained in:
Mark Schmitt 2021-01-06 09:05:14 +01:00
parent b0588321e0
commit b31bfeebd7

View File

@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: [3.6]
python-version: [3.6,3.7,3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
@ -20,10 +20,13 @@ jobs:
- name: Tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MATRIX_PYTHON_VERSION: ${{strategy.matrix.python-version}}
run: |
echo "Selected python version from matrix is: ${MATRIX_PYTHON_VERSION}"
sudo apt-get update -qq
sudo apt-get install -qq libpoppler-cpp-dev unpaper tesseract-ocr imagemagick ghostscript optipng
pip install --upgrade pipenv
pyenv global system ${MATRIX_PYTHON_VERSION}
pipenv install --system --dev
cd src/
pipenv run pytest --cov