Skip to content

Commit

Permalink
echo conda config, export env, build inplace
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandrmgservices committed Jul 26, 2023
1 parent dc0af5e commit 0c77146
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test-conda-venv-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,22 @@ jobs:
activate-environment: causalml${{ matrix.tf-label }}-py${{ matrix.python-version }}
environment-file: envs/environment${{ matrix.tf-label }}-py${{ matrix.python-version }}.yml

- name: echo env
- name: echo conda config
run: |
conda env export
conda info
conda list
conda config --show-sources
conda config --show
- name: echo conda env
conda env export

- name: Build
run: |
pip install -U pip
pip install -U setuptools
python -m pip install .[test]
python setup.py build_ext --inplace
- name: Test with pytest
run: pytest -vs tests/ --cov causalml/

0 comments on commit 0c77146

Please sign in to comment.