Skip to content

Commit

Permalink
echo env after build
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandrmgservices committed Jul 26, 2023
1 parent 03cb9b0 commit 13fdd99
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test-build-from-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,19 @@ jobs:
conda config --show-sources
conda config --show
- name: echo conda env
run: |
conda env export
- name: Build
run: |
pip install -U pip
pip install -U setuptools
python -m pip install .${{ matrix.tf-label-pip}}
python -m pip install .[test]
python setup.py build_ext --inplace
- name: Test with pytest
run: pytest -vs tests/ --cov causalml/

- name: echo conda env
run: |
conda env export
10 changes: 5 additions & 5 deletions .github/workflows/test-conda-venv-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,7 @@ jobs:
conda config --show-sources
conda config --show
- name: echo conda env
run: |
conda env export
- name: Build
- name: Build
run: |
pip install -U pip
pip install -U setuptools
Expand All @@ -57,3 +53,7 @@ jobs:
- name: Test with pytest
run: pytest -vs tests/ --cov causalml/

- name: echo conda env
run: |
conda env export

0 comments on commit 13fdd99

Please sign in to comment.