From a2388e51f66e07d822d4b5f95c1027c88e90728b Mon Sep 17 00:00:00 2001 From: Naser Mahfouz Date: Sat, 23 Nov 2024 12:39:57 -0500 Subject: [PATCH] reorg --- e3sm-diags/Dockerfile | 15 --------------- e3sm-diags/download_files.py | 2 -- 2 files changed, 17 deletions(-) diff --git a/e3sm-diags/Dockerfile b/e3sm-diags/Dockerfile index 77d0b26..f880ea8 100644 --- a/e3sm-diags/Dockerfile +++ b/e3sm-diags/Dockerfile @@ -1,20 +1,5 @@ FROM ubuntu:latest -RUN apt-get update -RUN apt-get -y upgrade -RUN apt-get -y remove cmake -RUN apt-get -y install software-properties-common -RUN add-apt-repository universe -RUN apt-get update && apt-get -y install wget unzip python3-full python3-pip - -RUN apt-get -y autoremove - -ARG DEBIAN_FRONTEND=noninteractive -ENV TZ=America/Los_Angeles - -ENV LANGUAGE=en_US:en \ - LANG=en_US.UTF-8 - RUN mkdir -p /e3sm_diags_downloaded_data/tests/integration COPY download_files.py /app/download_files.py diff --git a/e3sm-diags/download_files.py b/e3sm-diags/download_files.py index ac0c87b..8757be3 100644 --- a/e3sm-diags/download_files.py +++ b/e3sm-diags/download_files.py @@ -3,8 +3,6 @@ import urllib.request from typing import List -from tests.integration.config import TEST_DATA_DIR, TEST_IMAGES_DIR, TEST_ROOT_PATH - TEST_ROOT_PATH = "/e3sm_diags_downloaded_data/tests/integration/" TEST_DATA_DIR = "integration_test_data" TEST_IMAGES_DIR = "integration_test_images"