Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/spec_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Spec_tests

on:
push:
Expand All @@ -16,12 +16,16 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v3
- name: Checkout hed-python
uses: actions/checkout@v3

- name: Checkout spec
uses: actions/checkout@v3
with:
repository: hed-standard/hed-specification
ref: develop
path: hed-specification

- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion spec_tests/test_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class MyTestCase(unittest.TestCase):
@classmethod
def setUpClass(cls):
test_dir = os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(__file__)),
'../../hed-specification/docs/source/_static/data/error_tests'))
'../hed-specification/docs/source/_static/data/error_tests'))
cls.test_files = [os.path.join(test_dir, f) for f in os.listdir(test_dir)
if os.path.isfile(os.path.join(test_dir, f))]
cls.fail_count = 0
Expand Down