From 767095511261781b60666ab5b05a5f94549b4285 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 5 Oct 2022 11:51:06 +0200 Subject: [PATCH] Remove unit testing, just check syntax --- .github/workflows/tests.yml | 66 +++++++------------------------------ 1 file changed, 12 insertions(+), 54 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 81281253..eacdebf6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,69 +21,27 @@ jobs: name: "🧪 Test package using pytest" runs-on: ubuntu-latest - # If you need a database to perform your tests - # services: - # postgres: - # image: postgres - # env: - # POSTGRES_USER: username - # POSTGRES_PASSWORD: password - # POSTGRES_DB: db - # options: >- - # --health-cmd pg_isready - # --health-interval 10s - # --health-timeout 5s - # --health-retries 5 - # ports: - # - "5432:5432" - + syntax: + name: "🧪 Check the package's syntax" + runs-on: ubuntu-latest + steps: - name: "⬇️ Checkout repository" uses: actions/checkout@v3 - + - name: "🔨 Setup Python" uses: actions/setup-python@v3 - + with: + python-version: '3.8' + - name: "🔨 Setup Poetry" uses: abatilo/actions-poetry@v2.1.6 - + - name: "🔨 Setup Poetry Python environment" id: pyenv uses: Steffo99/actions-poetry-deps@v0.2.4 - - - name: "🧪 Run tests" + + - name: "🧪 Run check" run: | source ${{ steps.pyenv.outputs.pyenv }}/activate - pytest --verbose --cov=. --cov-report=html - - - name: "⬆️ Upload coverage" - uses: actions/upload-artifact@v3 - with: - name: "Coverage" - path: htmlcov - - # If you do not want to use unit testing - # syntax: - # name: "🧪 Check the package's syntax" - # runs-on: ubuntu-latest - # - # steps: - # - name: "⬇️ Checkout repository" - # uses: actions/checkout@v3 - # - # - name: "🔨 Setup Python" - # uses: actions/setup-python@v3 - # with: - # python-version: '3.8' - # - # - name: "🔨 Setup Poetry" - # uses: abatilo/actions-poetry@v2.1.6 - # - # - name: "🔨 Setup Poetry Python environment" - # id: pyenv - # uses: Steffo99/actions-poetry-deps@v0.2.4 - # - # - name: "🧪 Run check" - # run: | - # source ${{ steps.pyenv.outputs.pyenv }}/activate - # python -m compileall thorunimore + python -m compileall thorunimore