Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9abd278

Browse filesBrowse files
committed
github: fix again.
1 parent 9dfd17c commit 9abd278
Copy full SHA for 9abd278

1 file changed

+4-4Lines changed: 4 additions & 4 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.github/workflows/pytest.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/pytest.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
python -m pip install --upgrade pip wheel
2424
python -m pip install -r requirements.txt
2525
pip install flake8 pytest
26-
./tools/build_talib_from_source.bash ./dependencies
26+
./tools/build_talib_from_source.bash ${{ env.HOME}}/dependencies
2727
env:
28-
TA_INCLUDE_PATH: ./dependencies/include
29-
TA_LIBRARY_PATH: ./dependencies/lib
28+
TA_INCLUDE_PATH: ${{ env.HOME }}/dependencies/include
29+
TA_LIBRARY_PATH: ${{ env.HOME }}/dependencies/lib
3030
- name: Lint with flake8
3131
run: |
3232
# stop the build if there are Python syntax errors or undefined names
@@ -37,4 +37,4 @@ jobs:
3737
run: |
3838
PYTHONPATH=. pytest
3939
env:
40-
LD_LIBRARY_PATH: ./dependencies/lib
40+
LD_LIBRARY_PATH: ${{ env.HOME}}/dependencies/lib

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.