Skip to content
Snippets Groups Projects
Commit 4e3b61ac authored by tuhe's avatar tuhe
Browse files

removed exit code

parent 6e6dc89c
Branches
No related tags found
No related merge requests found
# Use this guide:
# https://packaging.python.org/tutorials/packaging-projects/
# Use pipreqs.exe to get requirements list.
"""
Windows> py -m build && twine upload dist/*
Linux> python -m build && python -m twine upload dist/*
"""
import setuptools
import pkg_resources
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# beamer-slider
setuptools.setup(
name="coursebox_testing",
version="0.0.3",
......
......@@ -24,7 +24,7 @@ def check_by_grade_script(student_dir, module):
# output = subprocess.check_output(f"cd {student_dir} && {sys.executable} -m {module}", shell=True, check=False)
print("Running command", cmd)
p = run(cmd, capture_output=True, check=False, shell=True)
print('exit status:', p.returncode)
# print('exit status:', p.returncode)
out = p.stdout.decode()
stderr = p.stderr.decode()
# process = run(cmd, print_output=False, check=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment