Skip to content

Commit

Permalink
Don't fail if croissant package is not present
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Feb 7, 2025
1 parent 36afa7d commit f1332f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ckanext/dcat/tests/profiles/croissant/test_validate.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import json
import sys

import mlcroissant as mlc
try:
import mlcroissant as mlc
except ImportError:
pass

import pytest

Expand Down

0 comments on commit f1332f6

Please sign in to comment.