-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removes version definition from setup.py * Removes version definition from setup.py * Add tests for setup config + changelog Added setup_config_class to test for changes in setup.cfg.
- Loading branch information
1 parent
77fe340
commit 44129dc
Showing
5 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
## [Unreleased] - 2022-10-19 | ||
## Changed | ||
* Moved information of python version to the class initialization. | ||
|
||
## [0.0.13] - 2020-09-16 | ||
### Added | ||
* Created changelog | ||
* Fixed job status error string format | ||
* Added black for code formatting | ||
* Added black for code formatting | ||
* Fixed python semantics | ||
* Moved zipfile out from webapi class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
version = attr: smile_id_core.__version__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
""" | ||
This test suite contains different test around testing different setup configurations | ||
for the core library. | ||
""" | ||
import unittest | ||
from smile_id_core import __version__ | ||
|
||
|
||
class SetupConfigTest( | ||
unittest.TestCase, | ||
): | ||
def test_version_exists(self): | ||
self.assertIsNotNone(__version__, "Package version is not defined.") |