Skip to content

Commit

Permalink
first command test
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed May 24, 2024
1 parent e931a0d commit b9bab3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Empty file added pyquantms/__init__.py
Empty file.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

VERSION = "0.0.1"

Expand Down Expand Up @@ -47,7 +47,7 @@
project_urls=PROJECT_URLS,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
packages=["pyquantms"],
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
Expand Down
3 changes: 1 addition & 2 deletions tests/test_future.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def test_future_test():
# test for the create_diann_cfg command in cli
def test_create_diann_cfg():
runner = CliRunner()
result = runner.invoke(cli,
['create_diann_cfg','--help'])
result = runner.invoke(cli,['create_diann_cfg','--help'])

assert result.exit_code == 0

0 comments on commit b9bab3c

Please sign in to comment.