diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..45c4e56 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +addopts = -s --cov-report xml --cov=gh-license --disable-pytest-warnings --cov-fail-under=90 \ No newline at end of file diff --git a/requirements_dev.txt b/requirements_dev.txt new file mode 100644 index 0000000..0f5e297 --- /dev/null +++ b/requirements_dev.txt @@ -0,0 +1,3 @@ +-r requirements.txt +pytest >= 7.1.3 +pytest >= 4.0.0 \ No newline at end of file diff --git a/tests/test_cmd.py b/tests/test_cmd.py new file mode 100644 index 0000000..23b8ba6 --- /dev/null +++ b/tests/test_cmd.py @@ -0,0 +1,11 @@ +import pytest +from ghlicense import * + +def test_run_scan(): + assert False + +def test_run_licencelist(): + assert False + +def test_run_license(): + assert False