Skip to content

Commit

Permalink
set PYTHONPATH
Browse files Browse the repository at this point in the history
  • Loading branch information
cpunion committed Nov 20, 2024
1 parent 7c4d1df commit e362acd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ jobs:
run: go install -v ./...

- name: Test with coverage
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
run: |
export PYTHONPATH=`python -c "import sys; print(sys.path)"`
go test -v -coverprofile=coverage.txt -covermode=atomic ./...
- name: Test gopy
run: |
Expand Down

0 comments on commit e362acd

Please sign in to comment.