Skip to content

Commit 57d5ce1

Browse files
rename (#2)
1 parent 7ff48aa commit 57d5ce1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test-publish-to-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
echo $build_version
2020
poetry version $build_version
2121
- run: poetry build
22-
- run: pip install "dist/deepcov-$(poetry version -s).tar.gz"
22+
- run: pip install "dist/pytest-deepcov-$(poetry version -s).tar.gz"
2323
- run: pip install twine
2424
- run: ls -la dist
2525
- run: twine upload --repository testpypi dist/* -ualex-treebeard-test -p${{ secrets.TEST_PYPI_PASSWORD }}

python-cli/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.poetry]
2-
name = "deepcov"
2+
name = "pytest-deepcov"
33
version = "0.0.1"
44
license = "Apache-2.0"
55
homepage = "https://github.com/treebeardtech/deepcov"

python-cli/tests/test_cli.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33

44
import pytest
55
from click.testing import CliRunner
6-
from deepcov import cli
76
from deepcov.cli import File
87
from snapshottest.pytest import PyTestSnapshotTest
98
from tests.util import RESOURCES
109

10+
from deepcov import cli
11+
1112
pytest_plugins = "pytester"
1213
import shutil
1314
import sys

0 commit comments

Comments
 (0)