Skip to content

Commit

Permalink
creating tests as no tests create errors on the CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazztok45 committed Nov 1, 2023
1 parent 180543a commit 0eb0ae9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ test = [
"black",
"flake8",
"isort",
"pytest",
"radon",
"flake8_polyfill",
"coverage",
Expand Down
7 changes: 7 additions & 0 deletions test_init.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-
# content of test_sample.py
def first_func_for_test(x):
return x

def test_the_first_func():
assert first_func_for_test(1) == 1

0 comments on commit 0eb0ae9

Please sign in to comment.