Skip to content

Commit 7970872

Browse files
committed
Add test for not failing with Python 3.12
It seems Python 3.12 changed the behavior of unittest to fail if no test as run at all.
1 parent e8602a2 commit 7970872

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

tests/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,10 @@
1414
#
1515
# You should have received a copy of the GNU General Public License
1616
# along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
18+
import unittest
19+
20+
21+
class DummyTestCase(unittest.TestCase):
22+
def test_dummy(self):
23+
pass

0 commit comments

Comments
 (0)