8000 WIP investigate Windows CI failures by JukkaL · Pull Request #12476 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

WIP investigate Windows CI failures #12476

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 5 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add some debug prints
  • Loading branch information
JukkaL committed Mar 28, 2022
commit f85dcc490dc09cf399b731f8b45c3ce24728f4e3
3 changes: 3 additions & 0 deletions mypyc/test/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,9 @@ def run_case_step(self, testcase: DataDrivenTestCase, incremental_step: int) ->

# Assert that an output file got created
suffix = 'pyd' if sys.platform == 'win32' else 'so'
print('[cwd] ', os.getcwd())
print('[files] ', os.listdir('.'))
print('[glob] ', glob.glob('**/*native*', recursive=True))
assert glob.glob('native.*.{}'.format(suffix))

driver_path = 'driver.py'
Expand Down
0