Skip to content

Commit

Permalink
Merge branch 'dev' into add_stacklevel_to_missing_timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored Feb 22, 2023
2 parents 6e5e84f + 494e288 commit c90ac00
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 12 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/run_all_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,20 @@ jobs:
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: true
python-version: ${{ matrix.python-ver }}

- name: Install build dependencies
run: |
conda config --set always_yes yes --set changeps1 no
conda info
conda install -c conda-forge tox
conda list
# the conda dependency resolution for tox under python 3.7 can install the wrong importlib_metadata
conda install -c conda-forge tox "importlib_metadata>4"
- name: Conda reporting
run: |
conda info
conda config --show-sources
conda list --show-channel-urls
- name: Run tox tests
run: |
Expand Down Expand Up @@ -272,10 +276,14 @@ jobs:
run: |
pip install matplotlib
pip install -e .
conda info
conda list
pip list
- name: Conda reporting
run: |
conda info
conda config --show-sources
conda list --show-channel-urls
- name: Run gallery ros3 tests
run: |
python test.py --example-ros3
20 changes: 14 additions & 6 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,16 +138,20 @@ jobs:
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: true
python-version: ${{ matrix.python-ver }}

- name: Install build dependencies
run: |
conda config --set always_yes yes --set changeps1 no
conda info
conda install -c conda-forge tox
conda list
# the conda dependency resolution for tox under python 3.7 can install the wrong importlib_metadata
conda install -c conda-forge tox "importlib_metadata>4"
- name: Conda reporting
run: |
conda info
conda config --show-sources
conda list --show-channel-urls
- name: Run tox tests
run: |
Expand Down Expand Up @@ -242,10 +246,14 @@ jobs:
run: |
pip install matplotlib
pip install -e .
conda info
conda list
pip list
- name: Conda reporting
run: |
conda info
conda config --show-sources
conda list --show-channel-urls
- name: Run gallery ros3 tests
run: |
python test.py --example-ros3
Expand Down

0 comments on commit c90ac00

Please sign in to comment.