diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..84af9c6 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) 2022 Dell Inc, or its subsidiaries. +.PHONY: lint +lint: + echo example diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0d73790 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[tool.poetry] +name = "opi" +version = "0.0.1" +description = "just an example" +authors = ["OPI Dev "] +license = "Apache-2.0" +readme = "README.md" + +[tool.poetry.group.test.dependencies] +pytest = ">=1" +pytest-cov = ">=1" diff --git a/test_opi.py b/test_opi.py new file mode 100644 index 0000000..ae73555 --- /dev/null +++ b/test_opi.py @@ -0,0 +1,6 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) 2022 Dell Inc, or its subsidiaries. + + +def test_example(): + assert True