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

Test #210

Merged
merged 2 commits into from Oct 9, 2022
Merged

Test #210

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Version check
run: |
python otherfile/version_check.py
if: matrix.python-version == 3.7
if: matrix.python-version == 3.8
- name: Font check
run: |
python otherfile/font_check.py
Expand All @@ -44,18 +44,18 @@ jobs:
run: |
pip install notebook>=5.2.2
python otherfile/notebook_check.py
if: matrix.python-version == 3.7 && matrix.os == 'ubuntu-latest'
if: matrix.python-version == 3.8 && matrix.os == 'ubuntu-latest'
- name: Other tests
run: |
python -m vulture art/ otherfile/ setup.py art_profile.py --min-confidence 65 --exclude=__init__.py --sort-by-size
python -m bandit -r art -s B311
python -m pydocstyle --match='(?!test).*\.py' -v
if: matrix.python-version == 3.7
if: matrix.python-version == 3.8
- name: Codecov
run: |
python -m art testcov2
codecov
if: matrix.python-version == 3.7 && matrix.os == 'ubuntu-latest'
if: matrix.python-version == 3.8 && matrix.os == 'ubuntu-latest'
- name: Profile
run: |
python -m cProfile -s cumtime art_profile.py
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- Test system modified
## [5.7] - 2022-07-06
### Added
- 5 new font
Expand Down