File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ keywords = ["gam", "google"]
99authors = [
1010 { name = " Compiler LLC" , email = " dev@compiler.la" }
1111]
12- requires-python = " >=3.9 "
12+ requires-python = " >=3.11 "
1313dependencies = [
1414 " advanced-gam-for-google-workspace @ git+https://github.com/taers232c/GAMADV-XTD3.git@v6.61.14#subdirectory=src"
1515]
@@ -26,8 +26,8 @@ dev = [
2626 " pre-commit"
2727]
2828test = [
29+ " coverage" ,
2930 " pytest" ,
30- " pytest-cov" ,
3131 " pytest-mock"
3232]
3333
@@ -43,6 +43,10 @@ line-length = 127
4343target-version = [' py311' ]
4444include = ' \.pyi?$'
4545
46+ [tool .coverage .run ]
47+ branch = true
48+ source = [" compiler_admin" ]
49+
4650[tool .pyright ]
4751include = [" compiler_admin" , " tests" ]
4852
Original file line number Diff line number Diff line change 22set -eu
33
44# run normal pytests, skip e2e tests
5- pytest -m " not e2e" --cov=compiler_admin --cov-branch --import-mode=importlib
5+ coverage run -m pytest -m " not e2e"
66
77# clean out old coverage results
88rm -rf ./tests/coverage
You can’t perform that action at this time.
0 commit comments