Skip to content

Commit

Permalink
latest submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
hjwp committed Feb 24, 2021
1 parent 57040ff commit 7b3d5bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code
Submodule code updated 52 files
+0 −1 .gitignore
+0 −4 .travis.yml
+0 −4 Dockerfile
+6 −6 Makefile
+44 −3 docker-compose.yml
+1 −1 mypy.ini
+6 −4 requirements.txt
+28 −0 src/allocation/adapters/notifications.py
+86 −0 src/allocation/adapters/orm.py
+16 −0 src/allocation/adapters/redis_eventpublisher.py
+41 −24 src/allocation/adapters/repository.py
+51 −0 src/allocation/bootstrap.py
+13 −0 src/allocation/config.py
+29 −0 src/allocation/domain/commands.py
+26 −0 src/allocation/domain/events.py
+34 −14 src/allocation/domain/model.py
+41 −0 src/allocation/entrypoints/flask_app.py
+31 −0 src/allocation/entrypoints/redis_eventconsumer.py
+120 −0 src/allocation/service_layer/handlers.py
+55 −0 src/allocation/service_layer/messagebus.py
+0 −43 src/allocation/service_layer/services.py
+34 −12 src/allocation/service_layer/unit_of_work.py
+12 −0 src/allocation/views.py
+0 −5 src/djangoproject/alloc/apps.py
+0 −76 src/djangoproject/alloc/migrations/0001_initial.py
+0 −65 src/djangoproject/alloc/models.py
+0 −42 src/djangoproject/alloc/views.py
+0 −116 src/djangoproject/django_project/settings.py
+0 −22 src/djangoproject/django_project/urls.py
+0 −16 src/djangoproject/django_project/wsgi.py
+0 −21 src/djangoproject/manage.py
+1 −1 src/setup.py
+0 −0 tests/__init__.py
+70 −15 tests/conftest.py
+0 −0 tests/e2e/__init__.py
+30 −0 tests/e2e/api_client.py
+18 −0 tests/e2e/redis_client.py
+22 −40 tests/e2e/test_api.py
+40 −0 tests/e2e/test_external_events.py
+0 −0 tests/integration/__init__.py
+37 −0 tests/integration/test_email.py
+16 −41 tests/integration/test_repository.py
+104 −27 tests/integration/test_uow.py
+49 −0 tests/integration/test_views.py
+2 −1 tests/pytest.ini
+17 −0 tests/random_refs.py
+0 −47 tests/unit/test_allocate.py
+0 −13 tests/unit/test_batches.py
+142 −0 tests/unit/test_handlers.py
+74 −0 tests/unit/test_product.py
+0 −62 tests/unit/test_services.py
+0 −17 tests/wait_for_postgres.py

0 comments on commit 7b3d5bd

Please sign in to comment.