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 cc4146b commit 3f778dfCopy full SHA for 3f778df
.codegen.json
@@ -3,8 +3,15 @@
3
"src/databricks/labs/ucx/__about__.py": "__version__ = \"$VERSION\""
4
},
5
"toolchain": {
6
- "required": ["hatch"],
7
- "pre_setup": ["hatch env create"],
8
- "prepend_path": ".venv/bin"
+ "required": ["python3"],
+ "pre_setup": [
+ "python3 -m pip install hatch==1.7.0",
9
+ "python3 -m hatch env create"
10
+ ],
11
+ "prepend_path": ".venv/bin",
12
+ "acceptance_path": "tests/integration",
13
+ "test": [
14
+ "pytest -n 4 --cov src --cov-report=xml --timeout 30 tests/unit --durations 20"
15
+ ]
16
}
17
0 commit comments