Changes between Initial Version and Version 1 of Ticket #33454, comment 4


Ignore:
Timestamp:
Jan 28, 2022, 4:54:48 AM (3 years ago)
Author:
Thorben Luepkes

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33454, comment 4

    initial v1  
    55>
    66> It looks like an issue in your code.
     7Thanks for the quick reply.
    78
    89This seems like a weird change to make to me?
     
    1213I would really like to be able to share the whole codebase, but as you might know, thats not really possible. We serve two different markets with the same codebase, and have market specific tests: Main market runs 1000 tests, and market b just runs 27 tests that are specific to that market.
    1314But due to the change to tags, the test-suit tries to include apps into the test that arent in `INSTALLED_APPS`. I have dumped out the variable during the test, and it does not have the apps where the error is thrown even included.
     15
     16We run test like so:
     17```
     18            python3.9 manage.py test --exclude-tag=functional --timing # Main Market, no functional test
     19            MARKET=market_b python3.9 manage.py test --tag=market_b --exclude-tag=functional --timing # The other market, also no functional tests
     20```
Back to Top