move tests around
This commit is contained in:
parent
dc52408e35
commit
37298b7096
@ -17,7 +17,7 @@ classifiers = [
|
||||
requires-python = ">= 3.11"
|
||||
dynamic = ["version"]
|
||||
dependencies = [
|
||||
"pe"
|
||||
"frozendict",
|
||||
]
|
||||
|
||||
[tool.maturin]
|
||||
@ -27,7 +27,11 @@ features = ["pyo3/extension-module"]
|
||||
|
||||
|
||||
[project.optional-dependencies]
|
||||
rust-backend = ["maturin"]
|
||||
rust-backend = ["maturin", "pyo3"]
|
||||
|
||||
stac_server = [
|
||||
"fastapi",
|
||||
]
|
||||
|
||||
docs = [
|
||||
"sphinx",
|
||||
@ -35,3 +39,13 @@ docs = [
|
||||
"myst_nb",
|
||||
"sphinx-autobuild"
|
||||
]
|
||||
|
||||
dev = [
|
||||
"pytest",
|
||||
"black",
|
||||
"ruff",
|
||||
"flake8",
|
||||
"pre-commit",
|
||||
"isort",
|
||||
"responses",
|
||||
]
|
12
test/test.py
Normal file
12
test/test.py
Normal file
@ -0,0 +1,12 @@
|
||||
from qubed import Qube
|
||||
|
||||
q = Qube.from_dict({
|
||||
"class=od" : {
|
||||
"expver=0001": {"param=1":{}, "param=2":{}},
|
||||
"expver=0002": {"param=1":{}, "param=2":{}},
|
||||
},
|
||||
"class=rd" : {
|
||||
"expver=0001": {"param=1":{}, "param=2":{}, "param=3":{}},
|
||||
"expver=0002": {"param=1":{}, "param=2":{}},
|
||||
},
|
||||
})
|
Loading…
x
Reference in New Issue
Block a user