Rename topology in schema and config to SDO ref 77/13377/1 master
authorMartin Skorupski <martin.skorupski@highstreet-technologies.com>
Sat, 21 Sep 2024 15:11:55 +0000 (17:11 +0200)
committerMartin Skorupski <martin.skorupski@highstreet-technologies.com>
Sat, 21 Sep 2024 15:14:51 +0000 (17:14 +0200)
- housekeeping - split test from lint

Issue-ID: OAM-412
Change-Id: Iae27e5607f38233b05bb6dc3f5b7f103b68eaa16
Signed-off-by: Martin Skorupski <martin.skorupski@highstreet-technologies.com>
code/network-generator/Makefile

index d396d83..c91c3ee 100644 (file)
@@ -1,3 +1,19 @@
+################################################################################
+# Copyright 2024 highstreet technologies 
+#
+# Licensed under the Apache License, Version 2.0 (the 'License');
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an 'AS IS' BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
 .ONESHELL:
 ENV_PREFIX=$(shell python -c "if __import__('pathlib').Path('.oam/bin/pip').exists(): print('.oam/bin/')")
 USING_POETRY=$(shell grep "tool.poetry" pyproject.toml && echo "yes")
@@ -39,7 +55,7 @@ lint:             ## Run pep8, black, mypy linters.
        $(ENV_PREFIX)mypy --ignore-missing-imports --disallow-untyped-defs --check-untyped-def network_generation/
 
 .PHONY: test
-test: lint        ## Run tests and generate coverage report.
+test:             ## Run tests and generate coverage report.
        $(ENV_PREFIX)pytest -v --cov-config .coveragerc --cov=network_generation -l --tb=short --maxfail=1 tests/
        $(ENV_PREFIX)coverage xml
        $(ENV_PREFIX)coverage html