mirror of
https://github.com/ditkrg/todo-to-issue-action.git
synced 2026-01-22 13:56:44 +00:00
When test_proces_diff processes this file, it fails to create the subdirectories, leading to test failure. Since the subdirectories aren't really needed, removing them allows the test to complete successfully. Updated number of expected passing tests to account for the additional tests which can run to completion now.
20 lines
512 B
YAML
20 lines
512 B
YAML
name: "Run Tests"
|
|
on:
|
|
push:
|
|
pull_request:
|
|
jobs:
|
|
build:
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- uses: "actions/checkout@v4"
|
|
- uses: "actions/setup-python@v5"
|
|
with:
|
|
python-version: '3.12'
|
|
- name: "Install test dependencies"
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt -r requirements-dev.txt
|
|
- name: "Run tests"
|
|
run: python -m unittest discover
|
|
env:
|
|
SKIP_PROCESS_DIFF_TEST: false |