File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1212 fail-fast : false
1313 name : Linux Python ${{ matrix.python-version }}
1414 steps :
15- - uses : actions/checkout@v2
16- - uses : conda-incubator/setup-miniconda@v2
15+ - uses : actions/checkout@v4
16+ - uses : conda-incubator/setup-miniconda@v3
1717 with :
1818 activate-environment : bgcval2
1919 environment-file : environment.yml
3838 bgcval2_make_report --help
3939 download_from_mass --help
4040 - shell : bash -l {0}
41- run : pytest
41+ run : |
42+ pytest
4243 - shell : bash -l {0}
4344 run : sphinx-build -Ea doc doc/build
Original file line number Diff line number Diff line change 1717 fail-fast : false
1818 name : Linux Python ${{ matrix.python-version }}
1919 steps :
20- - uses : actions/checkout@v2
21- - uses : conda-incubator/setup-miniconda@v2
20+ - uses : actions/checkout@v4
21+ - uses : conda-incubator/setup-miniconda@v3
2222 with :
2323 activate-environment : bgcval2
2424 environment-file : environment.yml
Original file line number Diff line number Diff line change @@ -61,7 +61,9 @@ def _establish_hostname():
6161 elif gethostname ().find ('pmpc' ) > - 1 :
6262 hostname = "pml"
6363 elif gethostname ().find ('-az' ) > - 1 :
64- hostname = "local-test-only" # for testing on GA machine
64+ hostname = "local-test-only" # for testing on GA machine (old type)
65+ elif os .environ .get ("INPUT_RUN_POST" , None ):
66+ hostname = "local-test-only" # for testing on GA machine (new type)
6567 # FIXME local testing only
6668 elif gethostname ().find ('valeriu-PORTEGE-Z30-C' ) > - 1 :
6769 hostname = "local-test-only" # for testing on V's laptop
You can’t perform that action at this time.
0 commit comments