summaryrefslogtreecommitdiffstats
path: root/test/test_common.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-03-16Move tests to be organized within the source directory.Diego Elio Pettenò1-124/+0
This should simplify maintaining the tests in the long run, and allows mypy to more thoroughly check for types.
2020-03-08format code with blackBen1-63/+68
2019-02-08Replace epydoc metadata with SPDX identifiers.Diego Elio Pettenò1-5/+2
Most of the epydoc metadata (author, copyright, email) is duplicate in the package's setup.py or README. These copies are more likely to get out of date, and increase the amount of work to keep them in line. The license information should rather be provided with an SPDX identifier, which is more similar to what the Linux kernel and other projects, such as pyserial, do.
2019-02-08Replace flameeyes.eu with flameeyes.com.Diego Elio Pettenò1-1/+1
Due to EURid threatening to suspend my domain, make sure that the references are updated to point at the right stable domain. This includes changes to the files as well as a mailmap to update the author references in the log.
2018-11-16tests: simplify and cleanup.Diego Elio Pettenò1-9/+2
* Remove the __main__ blocks as the tests should not be executable by themselves. * Use absltest everywhere instead of a mixture of unittest/absltest (via parameterized). * Only modify import path once. * Cleanup pylint warnings, by disabling those that are not useful, and fixing those that are.
2018-01-01tests: improve code quality by passing the linter.Diego Elio Pettenò1-4/+3
2017-12-29Add more tests to cover the basic translation of objects to strings.Diego Elio Pettenò1-0/+74
This would have found an extra bug that was pushed unfixed after enum conversion, and two bugs that I did find during the conversion.
2017-12-28test_common: use absl-py to increase coverage, and simplify.Diego Elio Pettenò1-8/+23
This ensures the tests run independently instead of failing at the first mistake.
2017-12-28accucheck_reports: fix bug for mg/dL native meters.Diego Elio Pettenò1-10/+2
This was mixing up the units in the conversion. While fixing the bug, remove the confusing two-parameter form of convert_glucose_unit.
2017-12-28Use Python3 Enum class for glucose units.Diego Elio Pettenò1-7/+7
This makes the code more idiomatic and less brittle.
2013-09-29Fix style for tests.Diego Elio Pettenò1-28/+23
2013-08-03Relicense everything under MIT license.Diego Elio Pettenò1-1/+1
There is no reason for me to use GPLv3 now that I'm not using the CRC32-Sick code, so I'll go with the most liberal license out there.
2013-08-03Update function names to follow PEP8.Diego Elio Pettenò1-8/+8
2013-08-03Add utf-8 encoding specification to all files.Diego Elio Pettenò1-0/+1
2013-08-03Add tests for the glucose unit conversion.Diego Elio Pettenò1-0/+53