Skip to content

Commit 5472c18

Browse files
authored
Merge pull request #4843 from Textualize/makefile-change
Dont run coverage by default on make test
2 parents 901d31c + abe0e7a commit 5472c18

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ run := poetry run
22

33
.PHONY: test
44
test:
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
128
test-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
1616
coverage:

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ asyncio_mode = "auto"
8080
testpaths = ["tests"]
8181
addopts = "--strict-markers"
8282
markers = [
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

0 commit comments

Comments
 (0)