Skip to content

Commit e4f4297

Browse files
committed
also revert
1 parent 5ad2ecd commit e4f4297

File tree

1 file changed

+55
-55
lines changed

1 file changed

+55
-55
lines changed

.github/workflows/ci.yaml

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -15,65 +15,65 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
jobs:
18-
build:
19-
name: Build (${{ matrix.python-version }}, ${{ matrix.os }})
20-
runs-on: ${{ matrix.os }}
21-
defaults:
22-
run:
23-
shell: bash -l {0}
24-
strategy:
25-
fail-fast: false
26-
matrix:
27-
os: ["ubuntu-latest"]
28-
python-version: ["3.10"]
29-
steps:
30-
- uses: actions/checkout@v3
31-
with:
32-
fetch-depth: 0 # Fetch all history for all branches and tags.
33-
- name: Set environment variables
34-
run: |
35-
echo "CONDA_ENV_FILE=ci/environment.yml" >> $GITHUB_ENV
36-
echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV
37-
- name: Cache conda
38-
uses: actions/cache@v3
39-
with:
40-
path: ~/conda_pkgs_dir
41-
key:
42-
${{ runner.os }}-conda-py${{ matrix.python-version }}-${{
43-
hashFiles('ci/**.yml') }}
44-
- uses: conda-incubator/setup-miniconda@v2
45-
with:
46-
channels: conda-forge
47-
channel-priority: strict
48-
mamba-version: "*"
49-
activate-environment: flox-tests
50-
auto-update-conda: false
51-
python-version: ${{ matrix.python-version }}
52-
use-only-tar-bz2: true
18+
# build:
19+
# name: Build (${{ matrix.python-version }}, ${{ matrix.os }})
20+
# runs-on: ${{ matrix.os }}
21+
# defaults:
22+
# run:
23+
# shell: bash -l {0}
24+
# strategy:
25+
# fail-fast: false
26+
# matrix:
27+
# os: ["ubuntu-latest"]
28+
# python-version: ["3.10"]
29+
# steps:
30+
# - uses: actions/checkout@v3
31+
# with:
32+
# fetch-depth: 0 # Fetch all history for all branches and tags.
33+
# - name: Set environment variables
34+
# run: |
35+
# echo "CONDA_ENV_FILE=ci/environment.yml" >> $GITHUB_ENV
36+
# echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV
37+
# - name: Cache conda
38+
# uses: actions/cache@v3
39+
# with:
40+
# path: ~/conda_pkgs_dir
41+
# key:
42+
# ${{ runner.os }}-conda-py${{ matrix.python-version }}-${{
43+
# hashFiles('ci/**.yml') }}
44+
# - uses: conda-incubator/setup-miniconda@v2
45+
# with:
46+
# channels: conda-forge
47+
# channel-priority: strict
48+
# mamba-version: "*"
49+
# activate-environment: flox-tests
50+
# auto-update-conda: false
51+
# python-version: ${{ matrix.python-version }}
52+
# use-only-tar-bz2: true
5353

54-
- name: Install conda dependencies
55-
run: |
56-
mamba env update -f $CONDA_ENV_FILE
54+
# - name: Install conda dependencies
55+
# run: |
56+
# mamba env update -f $CONDA_ENV_FILE
5757

58-
- name: Set up conda environment
59-
shell: bash -l {0}
60-
run: |
61-
python -m pip install -e .
62-
conda list
58+
# - name: Set up conda environment
59+
# shell: bash -l {0}
60+
# run: |
61+
# python -m pip install -e .
62+
# conda list
6363

64-
- name: Run Tests
65-
shell: bash -l {0}
66-
run: |
67-
pytest -n auto --cov=./ --cov-report=xml
64+
# - name: Run Tests
65+
# shell: bash -l {0}
66+
# run: |
67+
# pytest -n auto --cov=./ --cov-report=xml
6868

69-
- name: Upload code coverage to Codecov
70-
uses: codecov/[email protected]
71-
with:
72-
file: ./coverage.xml
73-
flags: unittests
74-
env_vars: RUNNER_OS,PYTHON_VERSION
75-
name: codecov-umbrella
76-
fail_ci_if_error: false
69+
# - name: Upload code coverage to Codecov
70+
# uses: codecov/[email protected]
71+
# with:
72+
# file: ./coverage.xml
73+
# flags: unittests
74+
# env_vars: RUNNER_OS,PYTHON_VERSION
75+
# name: codecov-umbrella
76+
# fail_ci_if_error: false
7777

7878
# upstream-dev:
7979
# name: upstream-dev

0 commit comments

Comments
 (0)