Merge remote-tracking branch 'origin/feat/OPS-31' into feat/OPS-31

# Conflicts:
#	.github/workflows/ci.yml
This commit is contained in:
Amrasil 2025-03-26 22:31:43 +01:00
commit 0f8ed78299
2 changed files with 3 additions and 4 deletions

View file

@ -1,11 +1,10 @@
name: CI # Name of the workflow name: CI # Name of the workflow
on: on:
push: pull_request:
branches: branches:
- devel - devel
- master - master
- feat/OPS-31
jobs: jobs:
test: # Defines a job called "test" test: # Defines a job called "test"
@ -21,10 +20,10 @@ jobs:
python-version: '3.10' python-version: '3.10'
- name: Install dependencies - name: Install dependencies
run: poetry install run: pip install -r requirements.txt
- name: Run tests with coverage - name: Run tests with coverage
run: poetry run coverage run -m pytest run: pytest --cov=senju --cov-report=xml
- name: Upload coverage to Codecov - name: Upload coverage to Codecov
uses: codecov/codecov-action@v3 uses: codecov/codecov-action@v3

0
senju/__init__.py Normal file
View file