Skip to content
This repository has been archived by the owner on Feb 23, 2020. It is now read-only.

Commit

Permalink
#320 Ignore temporary code doubling
Browse files Browse the repository at this point in the history
  • Loading branch information
duker33 committed Nov 16, 2018
1 parent cf11813 commit 85e960b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ services:
volumes:
- ./../:$SRC_DIR
# Thus, you can work with apps related to the refarm-site
#- $REFARM_DIR/catalog:/root/.local/lib/python3.6/site-packages/catalog
#- $REFARM_DIR/ecommerce:/root/.local/lib/python3.6/site-packages/ecommerce
#- $REFARM_DIR/pages:/root/.local/lib/python3.6/site-packages/pages
#- $REFARM_DIR/search:/root/.local/lib/python3.6/site-packages/search
- $REFARM_DIR/catalog:/root/.local/lib/python3.6/site-packages/catalog
- $REFARM_DIR/ecommerce:/root/.local/lib/python3.6/site-packages/ecommerce
- $REFARM_DIR/pages:/root/.local/lib/python3.6/site-packages/pages
- $REFARM_DIR/search:/root/.local/lib/python3.6/site-packages/search
# @todo #150 Validate if `.env` is full
# Is full means '.env` contains all keynames from `.env.dist`
command: python manage.py runserver 0.0.0.0:8000
Expand Down
2 changes: 1 addition & 1 deletion stroyprombeton/tests/tests_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
def reverse_catalog_url(
url: str,
route_kwargs: dict,
tags: TagQuerySet=None,
tags: TagQuerySet=None, # Ignore CPDBear
sorting: int=None,
query_string: dict=None,
) -> str:
Expand Down
2 changes: 1 addition & 1 deletion stroyprombeton/tests/tests_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def setUp(self):
def response_product(self):
return self.response.context['products'][0]

def get_category_page(
def get_category_page( # Ignore CPDBear
self,
category: models.Category=None,
tags: models.TagQuerySet=None,
Expand Down

0 comments on commit 85e960b

Please sign in to comment.