We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c453973 commit 1e32c2eCopy full SHA for 1e32c2e
pyproject.toml
@@ -126,6 +126,11 @@ crate = "sqlalchemy_cratedb:CrateDialect"
126
[tool.black]
127
line-length = 100
128
129
+[tool.coverage.paths]
130
+source = [
131
+ "src/",
132
+]
133
+
134
[tool.coverage.run]
135
branch = false
136
omit = [
@@ -165,11 +170,18 @@ minversion = "2.0"
165
170
log_level = "DEBUG"
166
171
log_cli_level = "DEBUG"
167
172
log_format = "%(asctime)-15s [%(name)-36s] %(levelname)-8s: %(message)s"
173
+pythonpath = [
174
+ "src"
175
168
176
testpaths = [
169
177
"examples",
178
"sqlalchemy_cratedb",
179
"tests",
180
]
181
+python_files = [
182
+ "test_*.py",
183
+ "*_test.py",
184
185
xfail_strict = true
186
markers = [
187
0 commit comments