Skip to content

Debug ASAN build #57845

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ echo PYTHONHASHSEED=$PYTHONHASHSEED

COVERAGE="-s --cov=pandas --cov-report=xml --cov-append --cov-config=pyproject.toml"

PYTEST_CMD="MESONPY_EDITABLE_VERBOSE=1 PYTHONDEVMODE=1 PYTHONWARNDEFAULTENCODING=1 pytest -r fE -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET"
PYTEST_CMD="PYTEST_DEBUG=1 MESONPY_EDITABLE_VERBOSE=1 PYTHONDEVMODE=1 PYTHONWARNDEFAULTENCODING=1 pytest --setup-show --trace-config -v -r fE -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET"

if [[ "$PATTERN" ]]; then
PYTEST_CMD="$PYTEST_CMD -m \"$PATTERN\""
Expand Down
7 changes: 7 additions & 0 deletions generate_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,19 @@ def write_version_info(path) -> None:
git_version = None

try:
print("Getting _version_meson")
import _version_meson

version = _version_meson.__version__
git_version = _version_meson.__git_version__
except ImportError:
print("Getting versioneer")
version = versioneer.get_version()
git_version = versioneer.get_versions()["full-revisionid"]
print("Getting MESON_DIST_ROOT env variable")
if os.environ.get("MESON_DIST_ROOT"):
path = os.path.join(os.environ.get("MESON_DIST_ROOT"), path)
print("Writing versions")
with open(path, "w", encoding="utf-8") as file:
file.write(f'__version__="{version}"\n')
file.write(f'__git_version__="{git_version}"\n')
Expand Down Expand Up @@ -57,11 +61,14 @@ def main() -> None:
write_version_info(args.outfile)

if args.print:
print("Printing version")
try:
print("Getting _version_meson2")
import _version_meson

version = _version_meson.__version__
except ImportError:
print("Getting versioneer2")
version = versioneer.get_version()
print(version)

Expand Down