Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix tests #135

Merged
merged 2 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ author = Bruno Renié
description = A simple yet powerful CloudStack API client for Python and the command-line.
long_description = file: README.rst
license = BSD
license_file = LICENSE
license_files = LICENSE
classifiers =
Intended Audience :: Developers
Intended Audience :: System Administrators
Expand Down
2 changes: 0 additions & 2 deletions tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ def test_env_var_combined_with_dir_config(self):
"trace": None,
"poll_interval": 2.0,
"name": "hanibal",
"poll_interval": 2.0,
"verify": None,
"dangerous_no_tls_verify": True,
"retry": 0,
Expand Down Expand Up @@ -194,7 +193,6 @@ def test_current_dir_config(self):
"trace": None,
"poll_interval": 2.0,
"name": "cloudstack",
"poll_interval": 2.0,
"verify": None,
"dangerous_no_tls_verify": True,
"retry": 0,
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ deps=
flake8-import-order
commands =
pip install pytest pytest-cache pytest-cov
python setup.py test
pip wheel --no-deps -w dist .
test: pytest -v
check-manifest
lint: flake8 cs tests.py