We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ffc6be commit 3932bfeCopy full SHA for 3932bfe
2 files changed
.github/workflows/build.yml
@@ -55,7 +55,7 @@ jobs:
55
pylint $( find . -path './jepler*.py' )
56
([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace $( find . -path "./examples/*.py" ))
57
- name: Unit Test
58
- run: python test.py
+ run: python -m jepler_udecimal.test
59
- name: Build assets
60
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location .
61
- name: Build docs
test.py jepler_udecimal/test.pytest.py renamed to jepler_udecimal/test.py
@@ -2,6 +2,8 @@
2
# SPDX-FileCopyrightText: Copyright (c) 2020 jepler for Unpythonic Networks
3
#
4
# SPDX-License-Identifier: MIT
5
+
6
+# pylint: disable=missing-module-docstring,missing-function-docstring,unused-argument
7
import unittest
8
import doctest
9
import jepler_udecimal
0 commit comments