diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 390e3adf3..d0f3194ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,28 +49,27 @@ jobs: bash ./.github/scripts/install_pydeps.sh sudo apt install -y python3-tk - - name: Test - run: | - pytest -vs --cov=adi --scan-verbose --emu --junitxml="results.xml" -k 'not prod' + # - name: Test + # run: | + # pytest -vs --cov=adi --scan-verbose --emu --junitxml="results.xml" -k 'not prod' - name: Report coverage if: (github.event_name != 'pull_request') && (matrix.python-version == 3.6) env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - run: coveralls + run: coveralls + - name: Test without optional dependencies + run: | + pip uninstall -y paramiko + pytest -vs --scan-verbose --emu --junitxml="results.xml" -k 'not prod' + - name: Publish Unit Test Results uses: EnricoMi/publish-unit-test-result-action@v2 if: always() with: files: results.xml - - name: Test without optional dependencies - run: | - pip uninstall -y paramiko - pytest -vs --scan-verbose --emu --junitxml="results.xml" -k 'not prod' - - Lint: runs-on: ubuntu-latest strategy: