Skip to content

Commit 1a1c96d

Browse files
live logs
1 parent cae34af commit 1a1c96d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pyproject.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
[build-system]
22
requires = [
33
"setuptools>=42",
4-
"wheel"
4+
"wheel",
55
]
66
build-backend = "setuptools.build_meta"
7+
8+
[tool.pytest.ini_options]
9+
log_cli = true
10+
log_level = "INFO"

tests/ge_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
import string
1010
import subprocess
1111
import os
12+
import logging
1213
import shutil
1314
import socket
14-
import sys
1515
import threading
1616
from typing import Optional
1717
from dotenv import load_dotenv
@@ -102,7 +102,7 @@ def _build_geo_engine(self) -> None:
102102
if cargo_bin is None:
103103
raise RuntimeError('Cargo not found')
104104

105-
print("Building Geo Engine binaries… this may take a while.", file=sys.stderr)
105+
logging.info("Building Geo Engine binaries… this may take a while.")
106106

107107
subprocess.run(
108108
[

0 commit comments

Comments
 (0)