Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cccvs committed Apr 12, 2024
1 parent e7ca2f8 commit 24542eb
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,19 @@ jobs:
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
activate-environment: bluefoglite
add-pip-as-python-dependency: true
channels: conda-forge, defaults
auto-update-conda: true
show-channel-urls: true
- name: Install BlueFogLite
run: |
conda install pip
conda info -e
python --version
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install .
cat tools/requirements_dev.txt | grep pytest | xargs pip install
cat tools/requirements_dev.txt | grep pytest | xargs python -m pip install
- name: Unit Test
run: |
timeout 3m pytest -s -vv bluefoglite test
Expand All @@ -93,19 +95,22 @@ jobs:
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
activate-environment: bluefoglite
add-pip-as-python-dependency: true
channels: conda-forge, defaults
auto-update-conda: true
show-channel-urls: true

- name: Install brew coreutils
run: brew install coreutils # for timeout command
- name: Install BlueFogLite
run: |
conda install pip
conda info -e
python --version
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install .
cat tools/requirements_dev.txt | grep pytest | xargs pip install
cat tools/requirements_dev.txt | grep pytest | xargs python -m pip install
- name: Unit Test
run: |
timeout 3m pytest -s -vv bluefoglite test
Expand Down

0 comments on commit 24542eb

Please sign in to comment.