Compare commits

..

No commits in common. "c5a3fb2d04db02fd427d24c04601d6960aa3e168" and "58c4e296ea2929de1b338a538c0e0f4b7cb36ad4" have entirely different histories.

4 changed files with 5 additions and 11 deletions

View File

@ -15,11 +15,9 @@ steps:
- name: unit_test - name: unit_test
image: python:3.8 image: python:3.8
environment:
PRODUCER_REDIS: cache
commands: commands:
- pip3 install -r requirements.txt - pip3 install -r requirements.txt
- pytest test.py - echo -e 'pytest test.py'
- name: build-app - name: build-app
image: banzaicloud/drone-kaniko image: banzaicloud/drone-kaniko
@ -77,8 +75,6 @@ services:
volumes: volumes:
- name: dockersock - name: dockersock
path: /var/run path: /var/run
- name: cache
image: redis
volumes: volumes:
- name: dockersock - name: dockersock

View File

@ -16,7 +16,6 @@ __version__text__ = "1"
logging.basicConfig(level=logging.INFO) logging.basicConfig(level=logging.INFO)
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)
class Communicator: class Communicator:
""" """
Class handling low level communication with consumers. Class handling low level communication with consumers.

View File

@ -18,7 +18,6 @@ __version__text__ = "1"
KNOWNCONSUMER = os.getenv("PRODUCER_KNOWNCONSUMER", '10.69.42.1') KNOWNCONSUMER = os.getenv("PRODUCER_KNOWNCONSUMER", '10.69.42.1')
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)
class ConsumerLocator: class ConsumerLocator:
""" """

View File

@ -17,8 +17,8 @@ __module_name__ = "test"
__version__text__ = "1" __version__text__ = "1"
generateduuid = 'c959ad81-58f9-4445-aab4-8f3d68aee1ad' generateduuid = 'c959ad81-58f9-4445-aab4-8f3d68aee1ad'
redis_proc = factories.redis_proc(host='cache', port=6379) redis_proc = factories.redis_proc(port=6379)
redis_db = factories.redisdb('redis_nooproc') redis_db = factories.redisdb('redis_db')
def test_generate_string(mocker): def test_generate_string(mocker):