We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45f1bb3 commit fd6e11cCopy full SHA for fd6e11c
2 files changed
.github/workflows/python-test.yaml
@@ -27,6 +27,6 @@ jobs:
27
sudo apt install graphviz
28
pip install --upgrade pip
29
pip install --upgrade setuptools
30
- python -m pip install ".[test]"
+ python -m pip install -e ".[test]"
31
- name: Test with pytest
32
run: pytest -vs tests/ --cov causalml/
.github/workflows/test-build-from-source.yml
@@ -31,7 +31,7 @@ jobs:
- python-version: "3.12"
python-version-nd: 312
33
- tf-label: '-tf'
34
- tf-label-pip: '[tf]'
+ tf-label-pip: ',tf'
35
36
steps:
37
- name: checkout repository
@@ -70,8 +70,7 @@ jobs:
70
run: |
71
pip install -U pip
72
pip install -U setuptools
73
- python -m pip install .${{ matrix.tf-label-pip}}
74
+ python -m pip install -e ".[test${{ matrix.tf-label-pip}}]"
75
76
77
0 commit comments