From a65a518f87ba72e9bfc894ebf1f12f72d4387450 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Tue, 28 Feb 2023 16:13:14 +0000 Subject: [PATCH] make Python CI reusable --- .github/{workflows => disabled}/test.yml | 0 .github/workflows/ci-python.yml | 12 ++++++------ 2 files changed, 6 insertions(+), 6 deletions(-) rename .github/{workflows => disabled}/test.yml (100%) diff --git a/.github/workflows/test.yml b/.github/disabled/test.yml similarity index 100% rename from .github/workflows/test.yml rename to .github/disabled/test.yml diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 0b8587c..76c4409 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -2,9 +2,6 @@ name: Python CI on: workflow_call: -# env: -# REPO_NAME: - jobs: ci: runs-on: ubuntu-latest @@ -18,16 +15,19 @@ jobs: with: python-version: "3.11" - name: Install dependencies - run: pip install -r requirements.txt && pip install -r requirements-dev.txt + run: | + pip install -r requirements.txt + pip install -r requirements-dev.txt + pip install pylint-exit - name: Lint run: pylint --recursive=yes --output-format=parseable --output=lintreport.txt . || pylint-exit $? - name: Unit Test run: | coverage run -m py.test -v --junitxml=testresults.xml coverage xml -# sed -i 's/\/home\/runner\/work\/pypilot\/pypilot/\/github\/workspace/g' coverage.xml + sed -i 's@${{ github.workspace }}@/github/workspace@g' coverage.xml - name: SonarCloud Scan uses: SonarSource/sonarcloud-github-action@master env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_CLOUD }}