From 4d8d6e13f04b2eb3f4fc24a5436016c5b653fe0a Mon Sep 17 00:00:00 2001 From: jung-geun Date: Sun, 25 Feb 2024 09:29:59 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EB=B3=80=EA=B2=BD=20?= =?UTF-8?q?=EB=82=B4=EC=9A=A9=EC=9D=84=20=EC=9A=94=EC=95=BD=ED=95=9C=20?= =?UTF-8?q?=EC=BB=A4=EB=B0=8B=20=EB=A9=94=EC=8B=9C=EC=A7=80=EC=9E=85?= =?UTF-8?q?=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 10 +++++----- bean.py => test/bean.py | 0 digits.py => test/digits.py | 0 digits_tf.py => test/digits_tf.py | 0 fashion_mnist.py => test/fashion_mnist.py | 0 fashion_mnist_tf.py => test/fashion_mnist_tf.py | 0 iris.py => test/iris.py | 0 iris_tf.py => test/iris_tf.py | 0 mnist.py => test/mnist.py | 0 mnist_tf.py => test/mnist_tf.py | 0 seeds.py => test/seeds.py | 0 xor.py => test/xor.py | 0 test01.py | 4 ---- 13 files changed, 5 insertions(+), 9 deletions(-) rename bean.py => test/bean.py (100%) rename digits.py => test/digits.py (100%) rename digits_tf.py => test/digits_tf.py (100%) rename fashion_mnist.py => test/fashion_mnist.py (100%) rename fashion_mnist_tf.py => test/fashion_mnist_tf.py (100%) rename iris.py => test/iris.py (100%) rename iris_tf.py => test/iris_tf.py (100%) rename mnist.py => test/mnist.py (100%) rename mnist_tf.py => test/mnist_tf.py (100%) rename seeds.py => test/seeds.py (100%) rename xor.py => test/xor.py (100%) delete mode 100644 test01.py diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8a87a9e..78e0f6b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,19 +1,19 @@ stages: - - sonarqube-check + - sonarqube-check sonarqube-check: stage: sonarqube-check - image: + image: name: sonarsource/sonar-scanner-cli:5.0 entrypoint: [""] variables: - SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache - GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task + SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache + GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task cache: key: "${CI_JOB_NAME}" paths: - .sonar/cache - script: + script: - sonar-scanner allow_failure: true only: diff --git a/bean.py b/test/bean.py similarity index 100% rename from bean.py rename to test/bean.py diff --git a/digits.py b/test/digits.py similarity index 100% rename from digits.py rename to test/digits.py diff --git a/digits_tf.py b/test/digits_tf.py similarity index 100% rename from digits_tf.py rename to test/digits_tf.py diff --git a/fashion_mnist.py b/test/fashion_mnist.py similarity index 100% rename from fashion_mnist.py rename to test/fashion_mnist.py diff --git a/fashion_mnist_tf.py b/test/fashion_mnist_tf.py similarity index 100% rename from fashion_mnist_tf.py rename to test/fashion_mnist_tf.py diff --git a/iris.py b/test/iris.py similarity index 100% rename from iris.py rename to test/iris.py diff --git a/iris_tf.py b/test/iris_tf.py similarity index 100% rename from iris_tf.py rename to test/iris_tf.py diff --git a/mnist.py b/test/mnist.py similarity index 100% rename from mnist.py rename to test/mnist.py diff --git a/mnist_tf.py b/test/mnist_tf.py similarity index 100% rename from mnist_tf.py rename to test/mnist_tf.py diff --git a/seeds.py b/test/seeds.py similarity index 100% rename from seeds.py rename to test/seeds.py diff --git a/xor.py b/test/xor.py similarity index 100% rename from xor.py rename to test/xor.py diff --git a/test01.py b/test01.py deleted file mode 100644 index 7602de8..0000000 --- a/test01.py +++ /dev/null @@ -1,4 +0,0 @@ -it =iter(range(10)) - -for i in range(100): - print(next(it)) \ No newline at end of file