Skip to content

Commit 2dd15b7

Browse files
committed
Tidy up
1 parent e89c66e commit 2dd15b7

File tree

2 files changed

+6
-20
lines changed

2 files changed

+6
-20
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
runs-on: ubuntu-22.04
1010
strategy:
1111
fail-fast: false
12-
# matrix:
13-
# python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"]
12+
matrix:
13+
python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v3
1717

18-
# - name: Set up Python ${{ matrix.python-version }}
19-
# uses: actions/setup-python@v5
20-
# with:
21-
# python-version: ${{ matrix.python-version }}
18+
- name: Set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: ${{ matrix.python-version }}
2222

2323
- run: python --version
2424

tests/test_mutation.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -412,20 +412,6 @@ def bar():
412412
# assert len(mutants) == 1
413413

414414

415-
# def test_run_forced_fail_test_with_failing_test_TEMP():
416-
# print("temp_test_run_forced_fail_test_with_failing_test - start")
417-
# mutmut.config = _default_mutmut_config()
418-
# runner = _mocked_runner_run_forced_failed(return_value=1)
419-
#
420-
# run_forced_fail_test(runner)
421-
#
422-
# # out, err = capfd.readouterr()
423-
# # assert 'Running forced fail test' in out
424-
# # assert 'done' in out
425-
# assert os.environ['MUTANT_UNDER_TEST'] is ''
426-
# print("temp_test_run_forced_fail_test_with_failing_test - end")
427-
428-
429415
@patch('mutmut.__main__.CatchOutput.dump_output')
430416
@patch('mutmut.__main__.CatchOutput.stop')
431417
@patch('mutmut.__main__.CatchOutput.start')

0 commit comments

Comments
 (0)