diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5cc2c6..87619ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,10 +68,6 @@ jobs: source .venv/bin/activate pip install -r requirements.txt python rules2yml.py -d rules - cd rules - ls -l - cd schema - ls -l - name: Check rule correctness with unittests run: | diff --git a/tests/test_validation_rules.py b/tests/test_validation_rules.py index 11f6619..eb853c7 100644 --- a/tests/test_validation_rules.py +++ b/tests/test_validation_rules.py @@ -66,7 +66,7 @@ def test_parse_yaml(self): def test_yaml_generation(self): gen_yml_rules("unit_test_rules/") - num_proto_files = len(glob("open-simulation-interface/*.proto")) + num_proto_files = len(glob("open-simulation-interface/*.proto*")) num_rule_files = len(glob("unit_test_rules/*.yml")) num_rule_schema_files = len(glob("unit_test_rules/schema/*.yml")) self.assertEqual(num_proto_files, num_rule_files)