* updated py_checks , trying to trigger workflow * trail trigger * undone changes * changes after PR * corrected flake for logger , constants .py * fixed flake8 test on modified files * fixed flake8 test on modified files * fixed logger.py to trigger workflow * Update .github/workflows/py_checks.yml Co-authored-by: Przemyslaw Wysocki <przemyslaw.wysocki@intel.com> * Update .github/workflows/py_checks.yml Co-authored-by: Anastasia Kuporosova <anastasia.kuporosova@intel.com> --------- Co-authored-by: Przemyslaw Wysocki <przemyslaw.wysocki@intel.com> Co-authored-by: Anastasia Kuporosova <anastasia.kuporosova@intel.com>
19 lines
564 B
Python
19 lines
564 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import os
|
|
|
|
|
|
if os.environ.get('OUTPUT_DIR') is not None:
|
|
out_path = os.environ['OUTPUT_DIR']
|
|
else:
|
|
script_path = os.path.dirname(os.path.realpath(__file__))
|
|
out_path = os.path.join(script_path, 'out')
|
|
if not os.path.exists(out_path):
|
|
os.makedirs(out_path)
|
|
|
|
# supported_devices : CPU, GPU, GNA
|
|
test_device = os.environ.get('TEST_DEVICE', 'CPU;GPU').split(';')
|
|
test_precision = os.environ.get('TEST_PRECISION', 'FP32;FP16').split(';')
|