From 184762ac579b7fba29d77008f59e168fc60180e6 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Fri, 29 Jul 2022 13:18:07 +0200 Subject: [PATCH] [autotest] first attempt at a github action that runs tests --- .github/workflows/autotest.yml | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/autotest.yml diff --git a/.github/workflows/autotest.yml b/.github/workflows/autotest.yml new file mode 100644 index 0000000..5303b51 --- /dev/null +++ b/.github/workflows/autotest.yml @@ -0,0 +1,42 @@ +name: Run tests + +on: + pull_request: + types: [ opened, reopened, edited ] + push: + +env: + CC_TEST_REPORTER_ID: 40cb00907f7a10e04868e856570bb997ab9c42fd3b63d980f2b2269433195fdf + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + cache: 'pip' + - name: Install Ubuntu dependencies + run: apt install libdbus-1-dev libgit2-dev libvirt-dev taskwarrior + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + pip install -U coverage pytest pytest-mock freezegun + pip install 'pygit2<1' 'libvirt-python<6.3' 'feedparser<6' || true + pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u) + - name: Install Code Climate dependency + run: | + curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter + chmod +x ./cc-test-reporter + ./cc-test-reporter before-build + - name: Run tests + run: | + RESULT=coverage run --source=. -m pytest tests -v + coverage xml + ./cc-test-reporter after-build --exit-status $RESULT