Skip to content

Commit d330537

Browse files
committed
pause conda tests
1 parent 86ea955 commit d330537

File tree

1 file changed

+65
-72
lines changed

1 file changed

+65
-72
lines changed

.github/workflows/tests-conda.yml

Lines changed: 65 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,74 @@
1-
name: Conda Tests
1+
# name: Conda Tests
22

3-
# We don't want pushes (or PRs) to gh-pages to kick anything off
4-
on:
5-
# push:
6-
# branches:
7-
# - main
8-
# - '[0-9]+.[0-9]+.x'
9-
# pull_request:
10-
# branches:
11-
# - main
12-
# - '[0-9]+.[0-9]+.x'
3+
# # We don't want pushes (or PRs) to gh-pages to kick anything off
4+
# on:
5+
# workflow_call:
136

14-
concurrency:
15-
group: ${{ github.workflow}}-${{ github.head_ref }}
16-
cancel-in-progress: true
7+
# concurrency:
8+
# group: ${{ github.workflow}}-${{ github.head_ref }}
9+
# cancel-in-progress: true
1710

18-
jobs:
19-
#
20-
# Run all tests on Conda on both Windows and macOS
21-
#
22-
CondaTests:
23-
name: ${{ matrix.os }} ${{ matrix.python-version }}
24-
runs-on: ${{ matrix.os }}-latest
25-
defaults:
26-
run:
27-
shell: bash -l {0}
28-
strategy:
29-
fail-fast: false
30-
matrix:
31-
python-version: [3.11, 3.14]
32-
os: [macOS, Windows]
33-
include:
34-
- python-version: 3.12
35-
os: macOS
36-
- python-version: 3.13
37-
os: Windows
11+
# jobs:
12+
# #
13+
# # Run all tests on Conda on both Windows and macOS
14+
# #
15+
# CondaTests:
16+
# name: ${{ matrix.os }} ${{ matrix.python-version }}
17+
# runs-on: ${{ matrix.os }}-latest
18+
# defaults:
19+
# run:
20+
# shell: bash -l {0}
21+
# strategy:
22+
# fail-fast: false
23+
# matrix:
24+
# python-version: [3.11, 3.14]
25+
# os: [macOS, Windows]
26+
# include:
27+
# - python-version: 3.12
28+
# os: macOS
29+
# - python-version: 3.13
30+
# os: Windows
3831

39-
steps:
40-
- name: Checkout source
41-
uses: actions/checkout@v6
42-
with:
43-
fetch-depth: 150
44-
fetch-tags: true
45-
persist-credentials: false
32+
# steps:
33+
# - name: Checkout source
34+
# uses: actions/checkout@v6
35+
# with:
36+
# fetch-depth: 150
37+
# fetch-tags: true
38+
# persist-credentials: false
4639

47-
- name: Install from Conda
48-
uses: ./.github/actions/install-conda
49-
with:
50-
type: 'test'
51-
python-version: ${{ matrix.python-version }}
52-
need-cartopy: true
40+
# - name: Install from Conda
41+
# uses: ./.github/actions/install-conda
42+
# with:
43+
# type: 'test'
44+
# python-version: ${{ matrix.python-version }}
45+
# need-cartopy: true
5346

54-
- name: Run tests
55-
uses: ./.github/actions/run-tests
56-
with:
57-
run-doctests: ${{ runner.os != 'Windows' }}
58-
key: conda-${{ matrix.python-version }}-${{ runner.os }}
47+
# - name: Run tests
48+
# uses: ./.github/actions/run-tests
49+
# with:
50+
# run-doctests: ${{ runner.os != 'Windows' }}
51+
# key: conda-${{ matrix.python-version }}-${{ runner.os }}
5952

60-
codecov:
61-
name: CodeCov Upload
62-
needs: CondaTests
63-
runs-on: ubuntu-slim
64-
environment:
65-
name: CodeCov
66-
timeout-minutes: 2
67-
steps:
68-
- name: Checkout source
69-
uses: actions/checkout@v6
70-
with:
71-
persist-credentials: false
53+
# codecov:
54+
# name: CodeCov Upload
55+
# needs: CondaTests
56+
# runs-on: ubuntu-slim
57+
# environment:
58+
# name: CodeCov
59+
# timeout-minutes: 2
60+
# steps:
61+
# - name: Checkout source
62+
# uses: actions/checkout@v6
63+
# with:
64+
# persist-credentials: false
7265

73-
- name: Download coverage artifacts
74-
uses: actions/download-artifact@v7
66+
# - name: Download coverage artifacts
67+
# uses: actions/download-artifact@v7
7568

76-
- name: Upload coverage
77-
uses: codecov/codecov-action@v5
78-
with:
79-
name: Conda
80-
fail_ci_if_error: true
81-
token: ${{ secrets.CODECOV_TOKEN }}
69+
# - name: Upload coverage
70+
# uses: codecov/codecov-action@v5
71+
# with:
72+
# name: Conda
73+
# fail_ci_if_error: true
74+
# token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)