2d9dd9677436408323dcf3eb3b607c79c454e8e4,devtools/conda-recipe/run_test.py,,,#,6
Before Change
// where to write junit xml
junit_xml = os.path.join(os.getenv("CIRCLE_TEST_REPORTS", os.path.expanduser("~")),
"reports", "junit.xml")
os.makedirs(os.path.dirname(junit_xml), exist_ok=True)
print("junit destination:", junit_xml)
njobs_args = "-p no:xdist" if os.getenv("TRAVIS") else "-n2"
pytest_args = ("-v --pyargs {test_pkg} "
After Change
// where to write junit xml
junit_xml = os.path.join(os.getenv("CIRCLE_TEST_REPORTS", os.path.expanduser("~")),
"reports", "junit.xml")
target_dir = os.path.dirname(junit_xml)
if not os.path.exists(target_dir):
os.makedirs(target_dir)
print("junit destination:", junit_xml)
njobs_args = "-p no:xdist" if os.getenv("TRAVIS") else "-n2"
pytest_args = ("-v --pyargs {test_pkg} "
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 9
Instances
Project Name: markovmodel/PyEMMA
Commit Name: 2d9dd9677436408323dcf3eb3b607c79c454e8e4
Time: 2018-02-05
Author: m.scherer@fu-berlin.de
File Name: devtools/conda-recipe/run_test.py
Class Name:
Method Name:
Project Name: google/unrestricted-adversarial-examples
Commit Name: a952db04d2149fc47e1e71b0f78a6d7708e52746
Time: 2018-09-12
Author: nottombrown@gmail.com
File Name: unrestricted-advex/unrestricted_advex/tests/test_original_imagenet.py
Class Name:
Method Name: save_image_to_png
Project Name: divamgupta/image-segmentation-keras
Commit Name: 5e556e1c7ceb714c54113f1a96633b7900c00992
Time: 2021-01-16
Author: Marius.juston@hotmail.fr
File Name: keras_segmentation/train.py
Class Name:
Method Name: train
Project Name: google/unrestricted-adversarial-examples
Commit Name: 1f799b01d3d13b9b69c1f823cc2e037f52aec7e3
Time: 2018-09-02
Author: nottombrown@gmail.com
File Name: unrestricted-advex/unrestricted_advex/plotting.py
Class Name:
Method Name: save_image_to_png