Skip to content

Commit ab3fcb8

Browse files
authored
Merge pull request #104 from rafiss/sqlalchemy-python3
Use python3 for sqlalchemy tests
2 parents a18894d + 28443b4 commit ab3fcb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/sqlalchemy/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ ADDR ?= cockroachdb://root@localhost:26257/company_sqlalchemy?sslmode=disable
1717

1818
.PHONY: start
1919
start:
20-
ADDR=$(ADDR) ./server.py --port=6543
20+
ADDR=$(ADDR) python3 ./server.py --port=6543
2121

2222
.PHONY: deps
2323
deps:
2424
# To avoid permissions errors, the following should be run in a virtualenv
2525
# (preferred) or as root.
26-
pip install flask-sqlalchemy sqlalchemy-cockroachdb psycopg2
26+
pip3 install flask-sqlalchemy sqlalchemy-cockroachdb psycopg2

0 commit comments

Comments
 (0)