Skip to content

Commit

Permalink
Fix issue with finding incorrect conftest file for proto tests (Bears…
Browse files Browse the repository at this point in the history
…-R-Us#3250)

In certain environments, pytest was finding the incorrect version
of the conftest when running the proto tests. Adding the directory
explicitly to the proto test call fixes this issue.
  • Loading branch information
bmcdonald3 authored May 29, 2024
1 parent 8cc410c commit 43a8ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ test-python:

size=100
test-python-proto:
python3 -m pytest -c pytest_PROTO.ini --size=$(size) $(ARKOUDA_PYTEST_OPTIONS)
python3 -m pytest -c pytest_PROTO.ini PROTO_tests/ --size=$(size) $(ARKOUDA_PYTEST_OPTIONS)

CLEAN_TARGETS += test-clean
.PHONY: test-clean
Expand Down

0 comments on commit 43a8ede

Please sign in to comment.