Skip to content

Commit

Permalink
make paths work on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Oct 14, 2024
1 parent efb9e87 commit d7e681c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,12 @@ ifneq ($(DUCKDB_GIT_VERSION),)
endif

# Installs the test runner using the selected DuckDB version (latest stable by default)
# TODO: switch to PyPI distribution
install_dev_dependencies:
$(PYTHON_BIN) -m venv venv
$(PYTHON_VENV_BIN) -m pip install 'duckdb$(DUCKDB_INSTALL_VERSION)'
$(PYTHON_VENV_BIN) -m pip install git+https://github.com/duckdb/duckdb-sqllogictest-python # TODO: replace with pypi package
$(PYTHON_VENV_BIN) -m pip install ../duckdb-sqllogictest-py
#$(PYTHON_VENV_BIN) -m pip install git+https://github.com/duckdb/duckdb-sqllogictest-python

test_debug: debug
@echo "Running DEBUG tests.."
Expand Down

0 comments on commit d7e681c

Please sign in to comment.