diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1e95df499..f26eea884 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,10 @@ on: pull_request: branches: '*' +env: + PY_COLORS: 1 + #MU_LOG_TO_STDOUT: 1 + jobs: test: timeout-minutes: 30 @@ -90,11 +94,12 @@ jobs: " test-pios: - name: Test Raspbian ${{ matrix.docker-tag }} + name: Test PiOS ${{ matrix.docker-tag }} (${{ matrix.pyenv }}) runs-on: ubuntu-latest strategy: matrix: docker-tag: ['stretch-2018-03-13', 'buster-2021-05-28', 'buster-legacy-2021-12-02'] + pyenv: ['virtualenv', 'system'] fail-fast: false services: rpios: @@ -129,21 +134,38 @@ jobs: port: ${{ job.services.rpios.ports[5022] }} # Purposely skip apt update, install version from image stale index script: sudo apt-get install -y python3-virtualenv - - name: Create venv and install Python dependencies + - name: Create virtual environment and always activate it + if: matrix.pyenv == 'virtualenv' uses: appleboy/ssh-action@master with: host: rpios username: pi password: raspberry port: ${{ job.services.rpios.ports[5022] }} - command_timeout: 20m script: | python3 -m virtualenv ~/mu/.venv -v --python=python3 --system-site-packages echo "source ~/mu/.venv/bin/activate" > ~/.bashrc_new && cat ~/.bashrc >> ~/.bashrc_new rm ~/.bashrc && mv ~/.bashrc_new ~/.bashrc - source .venv/bin/activate - python -m pip list - python -m pip install ."[dev]" + - name: Upgrade pip in Stretch system test + if: matrix.pyenv == 'system' && matrix.docker-tag == 'stretch-2018-03-13' + uses: appleboy/ssh-action@master + with: + host: rpios + username: pi + password: raspberry + port: ${{ job.services.rpios.ports[5022] }} + script: python3 -m pip install pip==20.3.4 + - name: Install Python dependencies + uses: appleboy/ssh-action@master + with: + host: rpios + username: pi + password: raspberry + port: ${{ job.services.rpios.ports[5022] }} + command_timeout: 20m + script: | + python3 -m pip list + python3 -m pip install ."[dev]" - name: Environment info uses: appleboy/ssh-action@master with: @@ -165,4 +187,4 @@ jobs: password: raspberry port: ${{ job.services.rpios.ports[5022] }} command_timeout: 25m - script: xvfb-run python make.py check + script: xvfb-run python3 make.py check diff --git a/make.py b/make.py index f205b3c83..86bf36b1c 100644 --- a/make.py +++ b/make.py @@ -113,6 +113,7 @@ def coverage(): "-m", PYTEST, "-v", +# "-s", "--cov-config", ".coveragerc", "--cov-report",