From fcaae2f64364fa8d74fb80deb2e5a8e1b378c1dd Mon Sep 17 00:00:00 2001 From: kayibal Date: Thu, 25 Jul 2024 14:00:36 +0100 Subject: [PATCH] chore: Move runner app to separate package --- testing/docker-compose.yaml | 2 +- testing/{ => src}/requirements.txt | 0 testing/{tycho-client => src/runner}/__init__.py | 0 testing/{ => src/runner}/cli.py | 0 testing/{ => src/runner}/evm.py | 0 testing/{ => src/runner}/runner.py | 0 testing/{ => src/runner}/tycho.py | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename testing/{ => src}/requirements.txt (100%) rename testing/{tycho-client => src/runner}/__init__.py (100%) rename testing/{ => src/runner}/cli.py (100%) rename testing/{ => src/runner}/evm.py (100%) rename testing/{ => src/runner}/runner.py (100%) rename testing/{ => src/runner}/tycho.py (100%) diff --git a/testing/docker-compose.yaml b/testing/docker-compose.yaml index a8a3b91..9254d47 100644 --- a/testing/docker-compose.yaml +++ b/testing/docker-compose.yaml @@ -22,7 +22,7 @@ services: - ../substreams:/app/substreams - ../proto:/app/proto - ./tycho-indexer:/app/testing/tycho-indexer - - ./runner.py:/app/testing/runner.py + - ./src/runner/runner.py:/app/testing/src.py ports: - "80:80" depends_on: diff --git a/testing/requirements.txt b/testing/src/requirements.txt similarity index 100% rename from testing/requirements.txt rename to testing/src/requirements.txt diff --git a/testing/tycho-client/__init__.py b/testing/src/runner/__init__.py similarity index 100% rename from testing/tycho-client/__init__.py rename to testing/src/runner/__init__.py diff --git a/testing/cli.py b/testing/src/runner/cli.py similarity index 100% rename from testing/cli.py rename to testing/src/runner/cli.py diff --git a/testing/evm.py b/testing/src/runner/evm.py similarity index 100% rename from testing/evm.py rename to testing/src/runner/evm.py diff --git a/testing/runner.py b/testing/src/runner/runner.py similarity index 100% rename from testing/runner.py rename to testing/src/runner/runner.py diff --git a/testing/tycho.py b/testing/src/runner/tycho.py similarity index 100% rename from testing/tycho.py rename to testing/src/runner/tycho.py