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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150 | version: 2.1
executors:
uvdata-executor:
machine:
image: default
shell: /bin/bash -leo pipefail
orbs:
codecov: codecov/codecov@3.2.4 # to get this to work, had to opt-in to using third party orbs in Organization Security settings.
jobs:
pyuvdata:
executor: uvdata-executor
parameters:
python_version:
type: string
env_name:
type: string
environment:
PYTHON: << parameters.python_version >>
ENV_NAME: << parameters.env_name >>
OS: "linux"
# Circleci builds fail on forks because the version gets munged. (see #1029)
SETUPTOOLS_SCM_PRETEND_VERSION: "0.0.1"
steps:
- checkout
- restore_cache:
key: deps-{{ .Branch }}-{{ checksum "ci/pyuvdata_tests.yml" }}
- run:
name: Install Micromamba
command: wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | sudo tar -C / -xvj bin/micromamba
- run:
name: configure conda environment
command: |
micromamba info
# need these to add gxx and gcc to build novas and cython
micromamba create --name=${ENV_NAME} python=$PYTHON gxx gcc -f ci/${ENV_NAME}.yml -yq
- run:
name: Verify Mamba Config
command: |
source ./ci/_activate_current_env.sh
micromamba list -n ${ENV_NAME}
# check that the python version matches the desired one; exit immediately if not
PYVER=`python -c "import sys; print('{:d}.{:d}'.format(sys.version_info.major, sys.version_info.minor))"`
if [[ $PYVER != $PYTHON ]]; then
exit 1;
fi
- run:
name: install
command: |
source ./ci/_activate_current_env.sh
CFLAGS="-DCYTHON_TRACE=1 -DCYTHON_TRACE_NOGIL=1" pip install .
- run:
name: run pyuvdata tests
command: |
source ./ci/_activate_current_env.sh
mkdir test-reports
mkdir -p empty
cd empty
python -m pytest --pyargs pyuvdata -n 2 --dist=loadfile --cov=pyuvdata --cov-config="../.coveragerc" --cov-report xml:".././coverage.xml" --junitxml="../test-reports/xunit.xml"
cd ..
- save_cache:
key: deps-{{ .Branch }}-{{ checksum "ci/pyuvdata_tests.yml" }}
paths:
- "/opt/conda/envs/${ENV_NAME}/"
- store_test_results:
path: test-reports
- store_artifacts:
path: test-reports
- codecov/upload:
file: ./coverage.xml
doctest:
executor: uvdata-executor
parameters:
python_version:
type: string
env_name:
type: string
environment:
PYTHON: << parameters.python_version >>
ENV_NAME: << parameters.env_name >>
OS: "linux"
# Circleci builds fail on forks because the version gets munged. (see #1029)
SETUPTOOLS_SCM_PRETEND_VERSION: "0.0.1"
steps:
- checkout
- restore_cache:
key: deps-{{ .Branch }}-{{ checksum "ci/pyuvdata_tests.yml" }}
- run:
name: Install Micromamba
command: wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | sudo tar -C / -xvj bin/micromamba
- run:
name: configure conda environment
command: |
micromamba info
# need these to add gxx and gcc to build novas and cython
micromamba create --name=${ENV_NAME} python=$PYTHON gxx gcc -f ci/${ENV_NAME}.yml -yq
- run:
name: Verify Mamba Config
command: |
source ./ci/_activate_current_env.sh
micromamba list -n ${ENV_NAME}
# check that the python version matches the desired one; exit immediately if not
PYVER=`python -c "import sys; print('{:d}.{:d}'.format(sys.version_info.major, sys.version_info.minor))"`
if [[ $PYVER != $PYTHON ]]; then
exit 1;
fi
- run:
name: install
command: |
source ./ci/_activate_current_env.sh
pip install -e .
- run:
name: run tutorial tests
command: |
source ./ci/_activate_current_env.sh
cd docs
python -m pytest -n auto --doctest-glob="*.rst" -W "error::DeprecationWarning"
cd ..
- save_cache:
key: deps-{{ .Branch }}-{{ checksum "ci/pyuvdata_tests.yml" }}
paths:
- "/opt/conda/envs/${ENV_NAME}/"
workflows:
version: 2
build_and_test:
jobs:
- pyuvdata:
name: pyuvdata_3.10
python_version: "3.10"
env_name: "pyuvdata_tests"
- pyuvdata:
name: pyuvdata_3.11
python_version: "3.11"
env_name: "pyuvdata_tests"
- pyuvdata:
name: pyuvdata_3.12
python_version: "3.12"
env_name: "pyuvdata_tests"
- pyuvdata:
name: pyuvdata_min_deps
python_version: "3.11"
env_name: "pyuvdata_min_deps_tests"
- pyuvdata:
name: pyuvdata_min_versions
python_version: "3.10"
env_name: "pyuvdata_min_versions_tests"
- doctest:
python_version: "3.11"
env_name: "pyuvdata_tests"
|