File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [
3
3
" setuptools>=42" ,
4
- " wheel"
4
+ " wheel" ,
5
5
]
6
6
build-backend = " setuptools.build_meta"
7
+
8
+ [tool .pytest .ini_options ]
9
+ log_cli = true
10
+ log_level = " INFO"
Original file line number Diff line number Diff line change 9
9
import string
10
10
import subprocess
11
11
import os
12
+ import logging
12
13
import shutil
13
14
import socket
14
- import sys
15
15
import threading
16
16
from typing import Optional
17
17
from dotenv import load_dotenv
@@ -102,7 +102,7 @@ def _build_geo_engine(self) -> None:
102
102
if cargo_bin is None :
103
103
raise RuntimeError ('Cargo not found' )
104
104
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." )
106
106
107
107
subprocess .run (
108
108
[
You can’t perform that action at this time.
0 commit comments