diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 10e2b51..1207ef8 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,7 +22,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest rocrate jsonschema rocrateValidator + pip install pytest rocrate jsonschema roc-validator - name: Test with pytest run: | pytest --tb=short -s diff --git a/tests/test_99_logging.py b/tests/test_99_logging.py index 510bdab..31c1478 100644 --- a/tests/test_99_logging.py +++ b/tests/test_99_logging.py @@ -32,7 +32,7 @@ def test_main(self): output.write(f'| {software} | {individualFileName} | {resultStr} |\n') output.write("\n\nDefinition of tests\n") output.write("- **pypi_rocrate**: tests if eln-file can be opened by pypi's rocrate; if eln file can be easily opened by that library.\n") - output.write("- **validator**: tests if the ro-crate conventions fulfilled using pypi's rocrateValidator.\n") + output.write("- **validator**: tests if the ro-crate conventions fulfilled using pypi's roc-validator.\n") output.write("- **schema**: tests if the conventions of the ELN-consortium are fulfilled using a schema description.\n") output.write("- **params_metadata_json**: tests if the conventions of the ELN-consortium are fulfilled, aka parameters exist and are consistent with convention.\n") output.close()