Skip to content

Commit 142c148

Browse files
author
Lionel Untereiner
committed
add fake test for CI
1 parent 6a9a4ca commit 142c148

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,22 @@ exclude = '''
7878
)/
7979
'''
8080

81+
[tool.pytest.ini_options]
82+
addopts = ""
83+
console_output_style = "count"
84+
python_classes = "Test"
85+
python_files = "test_*.py"
86+
python_functions = "test*"
87+
testpaths = ["tests"]
88+
asyncio_mode = "auto"
89+
8190
[tool.coverage.run]
8291
branch = true
8392
source = ["etpclient"]
8493

94+
[tool.pylint.format]
95+
max-line-length = "88"
96+
8597
[tool.poetry.scripts]
8698
client = "etpclient.main:main"
8799

tests/__init__.py

Whitespace-only changes.

tests/test_utils.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pytest
2+
3+
4+
def test_fake() -> None
5+
assert 1 == 1
6+

0 commit comments

Comments
 (0)