Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Find module path at runtime#89

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
fjwillemsen merged 2 commits intopython-constraint:mainfromiyanmv:path-test
Feb 8, 2025
Merged
Changes fromall 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
8 changes: 4 additions & 4 deletionstests/test_compilation.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,15 +3,15 @@

def test_if_compiled():
"""Test whether C-extensions are succesfully ran, if enabled."""
from constraintimportcheck_if_compiled
importconstraint

# check if the .so files are commented
dir = Path("./constraint")
dir = Path(constraint.__file__).resolve().parent
assert dir.exists()
files = list(dir.glob("_*.so"))

# check if the code uses C-extensions
if len(files) > 0:
assert check_if_compiled() is False
assertconstraint.check_if_compiled() is False
else:
assert check_if_compiled()
assertconstraint.check_if_compiled()

[8]ページ先頭

©2009-2025 Movatter.jp