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 360ca9f commit b673c76Copy full SHA for b673c76
.github/workflows/tests.yml
@@ -4,8 +4,14 @@ on:
4
push:
5
branches: [ main ]
6
pull_request: ~
7
+
8
+ # Allow job to be triggered manually.
9
workflow_dispatch:
10
11
+ # Run job each night after CrateDB nightly has been published.
12
+ schedule:
13
+ - cron: '0 4 * * *'
14
15
concurrency:
16
group: ${{ github.workflow }}-${{ github.ref }}
17
cancel-in-progress: true
pyproject.toml
@@ -59,12 +59,6 @@ log_cli_level = "DEBUG"
59
log_format = "%(asctime)-15s [%(name)-36s] %(levelname)-8s: %(message)s"
60
xfail_strict = true
61
62
-[tool.coverage.paths2]
63
-source = [
64
- ".",
65
- "examples",
66
-]
67
-
68
[tool.coverage.run]
69
branch = false
70
source = [
0 commit comments