ci: Run django test after our test (#612)

This commit is contained in:
Inada Naoki
2023-05-21 02:46:16 +09:00
committed by GitHub
parent c650aa0d4f
commit d05a00eebc
6 changed files with 73 additions and 68 deletions

View File

@ -78,10 +78,6 @@ def get_config_posix(options=None):
if static:
ext_options["language"] = "c++"
print("Options for building extention module:")
for k, v in ext_options.items():
print(f" {k}: {v}")
return ext_options
@ -157,7 +153,7 @@ if sys.platform == "win32":
else:
ext_options = get_config_posix(get_options())
print("# Extention options")
print("# Options for building extention module:")
for k, v in ext_options.items():
print(f" {k}: {v}")