From 5bcf571401c02201d17e2e384c94d8740bdb59b8 Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Sat, 2 Nov 2024 11:50:35 +0300 Subject: [PATCH] Move testing/ to examples/ --- Justfile | 4 ++-- README.md | 2 +- {testing => examples}/__init__.py | 0 {testing => examples}/consumer.py | 0 {testing => examples}/producer.py | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename {testing => examples}/__init__.py (100%) rename {testing => examples}/consumer.py (100%) rename {testing => examples}/producer.py (100%) diff --git a/Justfile b/Justfile index 0e6e4e2b..9da9fb17 100644 --- a/Justfile +++ b/Justfile @@ -21,10 +21,10 @@ run-artemis: docker compose run --service-ports artemis run-consumer: - uv run testing/consumer.py + uv run examples/consumer.py run-producer: - uv run testing/producer.py + uv run examples/producer.py publish: rm -rf dist diff --git a/README.md b/README.md index 60c62897..e141e80f 100644 --- a/README.md +++ b/README.md @@ -133,4 +133,4 @@ Also, I want to pointed out that: ### Examples -See producer and consumer examples in [testing/](./testing/). +See producer and consumer examples in [examples/](examples). diff --git a/testing/__init__.py b/examples/__init__.py similarity index 100% rename from testing/__init__.py rename to examples/__init__.py diff --git a/testing/consumer.py b/examples/consumer.py similarity index 100% rename from testing/consumer.py rename to examples/consumer.py diff --git a/testing/producer.py b/examples/producer.py similarity index 100% rename from testing/producer.py rename to examples/producer.py