Skip to content

Commit

Permalink
rename (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-treebeard authored Mar 23, 2021
1 parent 7ff48aa commit 57d5ce1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
echo $build_version
poetry version $build_version
- run: poetry build
- run: pip install "dist/deepcov-$(poetry version -s).tar.gz"
- run: pip install "dist/pytest-deepcov-$(poetry version -s).tar.gz"
- run: pip install twine
- run: ls -la dist
- run: twine upload --repository testpypi dist/* -ualex-treebeard-test -p${{ secrets.TEST_PYPI_PASSWORD }}
2 changes: 1 addition & 1 deletion python-cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "deepcov"
name = "pytest-deepcov"
version = "0.0.1"
license = "Apache-2.0"
homepage = "https://github.com/treebeardtech/deepcov"
Expand Down
3 changes: 2 additions & 1 deletion python-cli/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@

import pytest
from click.testing import CliRunner
from deepcov import cli
from deepcov.cli import File
from snapshottest.pytest import PyTestSnapshotTest
from tests.util import RESOURCES

from deepcov import cli

pytest_plugins = "pytester"
import shutil
import sys
Expand Down

0 comments on commit 57d5ce1

Please sign in to comment.