mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-12 17:54:29 +00:00
don't fail fast
This commit is contained in:
parent
1de70a1aae
commit
883c28e6d5
2 changed files with 2 additions and 1 deletions
1
.github/workflows/tests.yml
vendored
1
.github/workflows/tests.yml
vendored
|
@ -6,6 +6,7 @@ on:
|
|||
jobs:
|
||||
test:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.10", "3.11", "3.12"]
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
Base class for adapters
|
||||
"""
|
||||
|
||||
import sys
|
||||
from abc import abstractmethod
|
||||
from dataclasses import dataclass, field
|
||||
from typing import (
|
||||
|
@ -15,7 +16,6 @@ from typing import (
|
|||
Union,
|
||||
Unpack,
|
||||
)
|
||||
import sys
|
||||
|
||||
from linkml_runtime.linkml_model import (
|
||||
ClassDefinition,
|
||||
|
|
Loading…
Reference in a new issue