From 72ec673b168d2970dc73e64a26fc4bb39eae13a2 Mon Sep 17 00:00:00 2001 From: Bernardus Rendy <37468936+bernardusrendy@users.noreply.github.com> Date: Mon, 2 Oct 2023 17:09:25 -0700 Subject: [PATCH] ci.yaml no requirements-dev.txt --- .github/workflows/ci.yaml | 4 ++-- examples/fake_lab/config.toml | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 examples/fake_lab/config.toml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c19aae33..05fa98b5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,7 +41,7 @@ jobs: **/requirements.txt - name: Set up environment run: | - pip install --quiet -r ./requirements.txt -r ./requirements-dev.txt + pip install --quiet -r ./requirements.txt pip install --quiet . - name: Set up pyright run: | @@ -53,4 +53,4 @@ jobs: - name: Pylint run: pylint alab_management - name: Pyright - run: pyright \ No newline at end of file + run: pyright diff --git a/examples/fake_lab/config.toml b/examples/fake_lab/config.toml new file mode 100644 index 00000000..ba5e1e51 --- /dev/null +++ b/examples/fake_lab/config.toml @@ -0,0 +1,19 @@ +[general] +working_dir = "." +name = '__fake_alab__' + +[mongodb] +host = 'localhost' +port = 27017 +username = '' +password = '' + +[mongodb_completed] +host = 'localhost' +port = 27017 +username = '' +password = '' + +[rabbitmq] +host = "localhost" +port = 5672