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

Fix CircleCI and automated test configurations #32

Merged
merged 3 commits into from
Sep 19, 2022
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
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
pip3 install --upgrade pip
pip3 install --progress-bar=off -r requirements.txt
pip3 install --progress-bar=off -e .
- save_cache:
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ coverage>=0.0
flake8
mypy
lxml # needed for mypy coverage report
types-pyyaml # needed for mypy coverage report
types-pkg-resources # needed for mypy coverage report
wheel # needed to publish to PyPI in CircleCI
twine # needed to publish to PyPI in CircleCI
sphinx>=3 # used to generate and upload docs - sphinx-autodoc-typehints requires 4 or better per https://github.com/agronholm/sphinx-autodoc-typehints/pull/138
Expand Down
2 changes: 1 addition & 1 deletion tests/test_runner_success_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ def test_runner_lpass_config(self,
}
}
}
self.assertEqual(yaml.load(mock_stdout.getvalue()),
self.assertEqual(yaml.safe_load(mock_stdout.getvalue()),
parsed_yaml_value)