File tree Expand file tree Collapse file tree 4 files changed +27
-18
lines changed
project-template/{{cookiecutter.repo_name}}/exasol/{{cookiecutter.package_name}}
test/integration/project-template Expand file tree Collapse file tree 4 files changed +27
-18
lines changed Original file line number Diff line number Diff line change 2020
2121# fmt: off
2222_VERSION_MODULE_TEMPLATE = cleandoc ('''
23- # ATTENTION:
24- # This file is generated by exasol/toolbox/nox/_package_version.py when using:
25- # * either "poetry run -- nox -s project:fix"
26- # * or "poetry run -- nox version:check -- --fix"
27- # Do not edit this file manually!
28- # If you need to change the version, do so in the pyproject.toml, e.g. by using `poetry version X.Y.Z`.
23+ """ ATTENTION:
24+ This file is generated by exasol/toolbox/nox/_package_version.py when using:
25+ * either "poetry run -- nox -s project:fix"
26+ * or "poetry run -- nox version:check -- --fix"
27+ Do not edit this file manually!
28+ If you need to change the version, do so in the pyproject.toml, e.g. by using
29+ `poetry version X.Y.Z`.
30+ """
2931 MAJOR = {major}
3032 MINOR = {minor}
3133 PATCH = {patch}
Original file line number Diff line number Diff line change 1- # ATTENTION:
2- # This file is generated by exasol/toolbox/nox/_package_version.py when using:
3- # * either "poetry run -- nox -s project:fix"
4- # * or "poetry run -- nox version:check -- --fix"
5- # Do not edit this file manually!
6- # If you need to change the version, do so in the pyproject.toml, e.g. by using `poetry version X.Y.Z`.
1+ """ATTENTION:
2+ This file is generated by exasol/toolbox/nox/_package_version.py when using:
3+ * either "poetry run -- nox -s project:fix"
4+ * or "poetry run -- nox version:check -- --fix"
5+ Do not edit this file manually!
6+ If you need to change the version, do so in the pyproject.toml, e.g. by using
7+ `poetry version X.Y.Z`.
8+ """
9+
710MAJOR = 1
811MINOR = 6
912PATCH = 0
Original file line number Diff line number Diff line change 1- # ATTENTION:
2- # This file is generated by exasol/toolbox/nox/_package_version.py when using:
3- # * either "poetry run -- nox -s project:fix"
4- # * or "poetry run -- nox -s version:check -- --fix"
5- # Do not edit this file manually!
6- # If you need to change the version, do so in the pyproject.toml, e.g. by using `poetry version X.Y.Z`.
1+ """ATTENTION:
2+ This file is generated by exasol/toolbox/nox/_package_version.py when using:
3+ * either "poetry run -- nox -s project:fix"
4+ * or "poetry run -- nox version:check -- --fix"
5+ Do not edit this file manually!
6+ If you need to change the version, do so in the pyproject.toml, e.g. by using
7+ `poetry version X.Y.Z`.
8+ """
9+
710MAJOR = 0
811MINOR = 1
912PATCH = 0
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ def _command(poetry_path: str, task: str) -> list[str]:
88 def test_lint_code (self , poetry_path , run_command ):
99 command = self ._command (poetry_path , "lint:code" )
1010 output = run_command (command , check = False )
11+ assert "Session lint:code was successful." in output .stderr
1112 assert output .returncode == 0
You can’t perform that action at this time.
0 commit comments