Update CI workflow

This commit is contained in:
alstr 2025-04-10 15:42:18 +01:00
parent 388fc5a99e
commit 3e1aeb955e
2 changed files with 3 additions and 5 deletions

View File

@ -2,8 +2,6 @@ name: "Run Tests"
on: on:
push: push:
pull_request: pull_request:
with:
SKIP_PROCESS_DIFF_TEST: true
jobs: jobs:
build: build:
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"
@ -17,4 +15,6 @@ jobs:
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt pip install -r requirements.txt -r requirements-dev.txt
- name: "Run tests" - name: "Run tests"
run: python -m unittest discover run: python -m unittest discover
with:
SKIP_PROCESS_DIFF_TEST: true

View File

@ -9,8 +9,6 @@ on:
MANUAL_BASE_REF: MANUAL_BASE_REF:
description: "By default, the commit entered above is compared to the one directly before it; to go back further, enter an earlier SHA here" description: "By default, the commit entered above is compared to the one directly before it; to go back further, enter an earlier SHA here"
required: false required: false
with:
SKIP_PROCESS_DIFF_TEST: true
jobs: jobs:
build: build:
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"