Skip to content

Commit

Permalink
Test (#210)
Browse files Browse the repository at this point in the history
* fix : set Python 3.8 for tests

* doc : CHANGELOG updated
  • Loading branch information
sepandhaghighi committed Oct 9, 2022
1 parent efe9950 commit d62bbb6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
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

0 comments on commit d62bbb6

Please sign in to comment.