Skip to content

Commit

Permalink
ci: add example pyproject.toml
Browse files Browse the repository at this point in the history
Signed-off-by: Boris Glimcher <[email protected]>
  • Loading branch information
glimchb committed Sep 25, 2023
1 parent cca99a9 commit b865e8d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2022 Dell Inc, or its subsidiaries.
.PHONY: lint
lint:
echo example
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[tool.poetry]
name = "opi"
version = "0.0.1"
description = "just an example"
authors = ["OPI Dev <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"

[tool.poetry.group.test.dependencies]
pytest = ">=1"
pytest-cov = ">=1"
6 changes: 6 additions & 0 deletions test_opi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2022 Dell Inc, or its subsidiaries.


def test_example():
assert True

0 comments on commit b865e8d

Please sign in to comment.