diff --git a/.circleci/config.yml b/.circleci/config.yml index 5087edc50..5fa501ba2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -55,7 +55,7 @@ jobs: parallelism: 1 steps: - checkout - - run: COVERDIR=./coverage make BUILD_IN_CONTAINER=false CODECGEN_UID=23 tests + - run: COVERDIR=./coverage NO_SCHEDULER=t make BUILD_IN_CONTAINER=false CODECGEN_UID=23 tests - persist_to_workspace: root: . paths: diff --git a/backend/Dockerfile b/backend/Dockerfile index 44c1a96b9..490f965eb 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -4,9 +4,9 @@ RUN set -eux; \ export arch_val="$(dpkg --print-architecture)"; \ apt-get update && \ if [ "$arch_val" = "amd64" ]; then \ - apt-get install -y libpcap-dev time file shellcheck git gcc-arm-linux-gnueabihf curl build-essential python-pip; \ + apt-get install -y libpcap-dev time file shellcheck git gcc-arm-linux-gnueabihf curl build-essential; \ else \ - apt-get install -y libpcap-dev time file shellcheck git curl build-essential python-pip; \ + apt-get install -y libpcap-dev time file shellcheck git curl build-essential; \ fi; \ \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* @@ -36,8 +36,6 @@ RUN export arch_val="$(dpkg --print-architecture)"; \ mv shfmt /usr/bin; \ fi; -RUN pip install yapf==0.16.2 flake8==3.3.0 requests==2.19.1 - # Install Docker (client only) ENV DOCKERVERSION=17.09.1-ce RUN export arch_val="$(dpkg --print-architecture)"; \