From 387477d5c29a56794902cbbd4015c748e9a1788d Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 27 May 2023 14:16:58 -0700 Subject: [PATCH] try running all tests w/ctags --- .github/workflows/python-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 3d56d3942..f18366b76 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -34,6 +34,6 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt - - name: Run tests excluding test_get_tags_map_with_identifiers + - name: Run tests run: | - python -c "import unittest; loader = unittest.TestLoader(); suite = loader.discover('.'); suite_filtered = unittest.TestSuite([t for t in suite if 'test_get_tags_map_with_identifiers' not in str(t)]); unittest.TextTestRunner().run(suite_filtered)" + python -m unittest discover