File tree 3 files changed +0
-8
lines changed
3 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 11
11
jobs :
12
12
quick-benchmarks :
13
13
runs-on : ubuntu-latest
14
- defaults :
15
- run :
16
- shell : bash -el {0}
17
14
18
15
steps :
19
16
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 89
89
REQUIREMENTS : ci/requirements-py${{ matrix.python-version }}${{ matrix.suffix }}.yml
90
90
91
91
- name : List installed package versions
92
- shell : bash -l {0} # necessary for conda env to be active
93
92
run : conda list
94
93
95
94
- name : Run tests
96
- shell : bash -l {0} # necessary for conda env to be active
97
95
env :
98
96
# copy GitHub Secrets into environment variables for the tests to access
99
97
NREL_API_KEY : ${{ secrets.NRELAPIKEY }}
Original file line number Diff line number Diff line change 55
55
56
56
- name : List installed package versions (conda)
57
57
if : matrix.environment-type == 'conda'
58
- shell : bash -l {0} # necessary for conda env to be active
59
58
run : micromamba list
60
59
61
60
- name : Install bare Python ${{ matrix.python-version }}${{ matrix.suffix }}
66
65
67
66
- name : Install pvlib
68
67
if : matrix.environment-type == 'conda'
69
- shell : bash -l {0}
70
68
run : python -m pip install --no-deps .
71
69
72
70
- name : Set up bare environment
76
74
pip freeze
77
75
78
76
- name : Run tests
79
- shell : bash -l {0} # necessary for conda env to be active
80
77
run : |
81
78
# ignore iotools; those tests are run in a separate workflow
82
79
pytest pvlib --cov=./ --cov-report=xml --ignore=pvlib/tests/iotools
You can’t perform that action at this time.
0 commit comments