Copilot commented on code in PR #3643:
URL: https://github.com/apache/texera/pull/3643#discussion_r2261636776
##########
.github/workflows/github-action-build.yml:
##########
@@ -141,4 +131,4 @@ jobs:
cd core/amber/src/main/python && flake8 && black . --check
- name: Test with pytest
run: |
- cd core/amber/src/main/python && pytest -sv
\ No newline at end of file
+ cd core/amber/src/main/python && pytest -sv
--ignore=core/models/test_RTableExecutor.py
Review Comment:
The --ignore path 'core/models/test_RTableExecutor.py' appears to be
relative to the repository root, but pytest is being executed from
'core/amber/src/main/python'. This will likely cause pytest to fail to find the
file to ignore. The path should be relative to the pytest execution directory
or use an absolute path pattern.
```suggestion
cd core/amber/src/main/python && pytest -sv
--ignore=../../../models/test_RTableExecutor.py
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]