File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ run := poetry run
22
33.PHONY : test
44test :
5- $(run ) pytest --cov-report term-missing --cov=textual tests/ -n 16 --dist=loadgroup $(ARGS )
6-
7- .PHONY : unit-test
8- unit-test :
9- $(run ) pytest --cov-report term-missing --cov=textual tests/ -m " not integration_test" -n 16 --dist=loadgroup $(ARGS )
5+ $(run ) pytest tests/ -n 16 --dist=loadgroup $(ARGS )
106
117.PHONY : test-snapshot-update
128test-snapshot-update :
13- $(run ) pytest --cov-report term-missing --cov=textual tests/ --snapshot-update -n 16 --dist=loadgroup $(ARGS )
9+ $(run ) pytest tests/ --snapshot-update -n 16 --dist=loadgroup $(ARGS )
10+
11+ .PHONY : test-coverage
12+ test-coverage :
13+ $(run ) pytest tests/ --cov-report term-missing --cov=textual -n 16 --dist=loadgroup $(ARGS )
1414
1515.PHONY : coverage
1616coverage :
Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ asyncio_mode = "auto"
8080testpaths = [" tests" ]
8181addopts = " --strict-markers"
8282markers = [
83- " integration_test: marks tests as slow integration tests (deselect with '-m \" not integration_test\" ')" ,
8483 " syntax: marks tests that require syntax highlighting (deselect with '-m \" not syntax\" ')" ,
8584]
8685
You can’t perform that action at this time.
0 commit comments