try running all tests w/ctags

This commit is contained in:
Paul Gauthier 2023-05-27 14:16:58 -07:00
parent a84f93b9e4
commit 387477d5c2

View file

@ -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