Skip to content

Commit b9a9cc9

Browse files
authored
fix: setuptools for tests (#2593)
1 parent 444e3c1 commit b9a9cc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import os
22

3-
from setuptools import run_setup, setup
3+
import setuptools
44

55
os.chdir(os.path.join(os.path.dirname(__file__), ".."))
6-
sqlmesh_dist = run_setup("setup.py", stop_after="init")
6+
sqlmesh_dist = setuptools.distutils.core.run_setup("setup.py", stop_after="init")
77
requirements = sqlmesh_dist.install_requires + sqlmesh_dist.extras_require["dev"] # type: ignore
88
os.chdir(os.path.dirname(__file__))
99

10-
setup(
10+
setuptools.setup(
1111
name="sqlmesh-tests",
1212
description="Tests for SQLMesh",
1313
url="https://github.com/TobikoData/sqlmesh",

0 commit comments

Comments
 (0)