From 1bf486e9495af5b0e6356dd27b4bbf957a40be2e Mon Sep 17 00:00:00 2001 From: Martin Skorupski Date: Sat, 21 Sep 2024 17:11:55 +0200 Subject: [PATCH] Rename topology in schema and config to SDO ref - housekeeping - split test from lint Issue-ID: OAM-412 Change-Id: Iae27e5607f38233b05bb6dc3f5b7f103b68eaa16 Signed-off-by: Martin Skorupski --- code/network-generator/Makefile | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/code/network-generator/Makefile b/code/network-generator/Makefile index d396d83..c91c3ee 100644 --- a/code/network-generator/Makefile +++ b/code/network-generator/Makefile @@ -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 -- 2.16.6