-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeta.yaml
More file actions
85 lines (80 loc) · 3.02 KB
/
Copy pathmeta.yaml
File metadata and controls
85 lines (80 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package:
name: epmt
# When building locally without a tag, the version will be "develop".
version: '{{ environ.get("GIT_DESCRIBE_TAG", "develop") }}'
source:
path: .
build:
script:
# Install from the src/ subdirectory, where pyproject.toml lives.
- {{ PYTHON }} -m pip install src/ -vv
noarch: python
number: 0
requirements:
build:
# 3.9 is EOL; 3.10/3.11 supported; 3.12+ needs pandas 2.x, SQLAlchemy 2.x (issue #105)
- python>=3.10,<3.12
- pip
- setuptools>=61,<69
- wheel>=0.29.0
host:
- python>=3.10,<3.12
- pip
- setuptools>=61,<69
run:
- python>=3.10,<3.12
- sqlite>=3.49
- conda-forge::alembic
- conda-forge::flask
- conda-forge::kneed
- conda-forge::numpy==1.26.4
- conda-forge::pandas==1.5.3
- conda-forge::plotly
- conda-forge::psycopg2
- conda-forge::py-cpuinfo
- conda-forge::pyod
- conda-forge::python-daemon
- conda-forge::pytz
- conda-forge::scikit-learn
- conda-forge::scipy
- conda-forge::six
- conda-forge::sqlalchemy==1.4.54
test:
requires:
- conda-forge::pytest
imports:
- epmt
commands:
- epmt --help
# epmt check verifies papiex/SLURM/perf_event which are unavailable in the
- epmt -V
- export site_pkgs=$(python3 -c 'import site; print(site.getsitepackages()[0]);')
- epmt -vv check || echo "epmt check predictably failed (GUARDED)"
- pytest -v ${site_pkgs}/epmt/test/test_anysh.py
- pytest -v ${site_pkgs}/epmt/test/test_check.py || echo "unit test test_check failed (GUARDED)"
- pytest -v ${site_pkgs}/epmt/test/test_cmds.py
- pytest -v ${site_pkgs}/epmt/test/test_dbcare.py
# - pytest -v ${site_pkgs}/epmt/test/test_db_migration.py # SKIPPED
- pytest -v ${site_pkgs}/epmt/test/test_db_schema.py
- pytest -v ${site_pkgs}/epmt/test/test_explore.py
- pytest -v ${site_pkgs}/epmt/test/test_lib.py
- pytest -v ${site_pkgs}/epmt/test/test_outliers.py
- pytest -v ${site_pkgs}/epmt/test/test_query.py
- pytest -v ${site_pkgs}/epmt/test/test_run.py
- pytest -v ${site_pkgs}/epmt/test/test_settings.py
- pytest -v ${site_pkgs}/epmt/test/test_stat.py
- pytest -v ${site_pkgs}/epmt/test/test_submit.py
- pytest -v ${site_pkgs}/epmt/test/integration/test_integration_annotate.py
- pytest -v ${site_pkgs}/epmt/test/integration/test_integration_basic.py
- pytest -v ${site_pkgs}/epmt/test/integration/test_integration_collate_tsv.py
- pytest -v ${site_pkgs}/epmt/test/integration/test_integration_concat.py
- pytest -v ${site_pkgs}/epmt/test/integration/test_integration_daemon.py
- pytest -v ${site_pkgs}/epmt/test/integration/test_integration_escape.py
- pytest -v ${site_pkgs}/epmt/test/integration/test_integration_explore.py
# - pytest -v ${site_pkgs}/epmt/test/integration/test_integration_kernel_compile.py
# - pytest -v ${site_pkgs}/epmt/test/integration/test_integration_slurm.py
about:
home: https://github.com/NOAA-GFDL/epmt
license: MIT
license_file: LICENSE
summary: Experiment Process and Metadata Toolkit