Fixing unit testing importing unexpected and unused libraries.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
a182c703f4
commit
2899ac6cde
2 changed files with 5 additions and 4 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -37,8 +37,10 @@ docs/html
|
||||||
*.lpf
|
*.lpf
|
||||||
*.lgg
|
*.lgg
|
||||||
|
|
||||||
|
# Tests
|
||||||
|
common/coverage/
|
||||||
|
**/.coverage
|
||||||
|
|
||||||
# npm
|
# npm
|
||||||
common/node_modules
|
common/node_modules
|
||||||
common/coverage/
|
|
||||||
common/.coverage
|
|
||||||
runtime-pyside6/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/js/index.mjs*
|
runtime-pyside6/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/js/index.mjs*
|
||||||
|
|
|
@ -15,8 +15,7 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
"""
|
"""
|
||||||
from idlelib.configdialog import is_int
|
from math import log10, floor
|
||||||
from math import log10, floor, ceil
|
|
||||||
from typing import Self
|
from typing import Self
|
||||||
|
|
||||||
from .assertion import Assertion
|
from .assertion import Assertion
|
||||||
|
|
Loading…
Reference in a new issue