Skip to content

Commit e07e6d4

Browse files
remove unused codecov tests
1 parent 097ddef commit e07e6d4

File tree

2 files changed

+0
-23
lines changed

2 files changed

+0
-23
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ check-lint = "scripts:check_lint"
8181
check-mypy = "scripts:check_mypy"
8282
test = "scripts:test"
8383
test-verbose = "scripts:test_verbose"
84-
cov = "scripts:cov"
8584
test-notebooks = "scripts:test_notebooks"
8685
build-docs = "scripts:build_docs"
8786
serve-docs = "scripts:serve_docs"

scripts.py

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -38,28 +38,6 @@ def test_verbose():
3838
)
3939

4040

41-
def test_cov():
42-
subprocess.run(
43-
[
44-
"python",
45-
"-m",
46-
"pytest",
47-
"-n",
48-
"6",
49-
"-vv",
50-
"--cov=./redisvl",
51-
"--cov-report=xml",
52-
"--log-level=CRITICAL",
53-
],
54-
check=True,
55-
)
56-
57-
58-
def cov():
59-
subprocess.run(["coverage", "html"], check=True)
60-
print("If data was present, coverage report is in ./htmlcov/index.html")
61-
62-
6341
def test_notebooks():
6442
subprocess.run(["cd", "docs/", "&&", "poetry run treon", "-v"], check=True)
6543

0 commit comments

Comments
 (0)