Changes between Initial Version and Version 1 of Ticket #33454, comment 4
- Timestamp:
- Jan 28, 2022, 4:54:48 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33454, comment 4
initial v1 5 5 > 6 6 > It looks like an issue in your code. 7 Thanks for the quick reply. 7 8 8 9 This seems like a weird change to make to me? … … 12 13 I 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. 13 14 But 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 16 We 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 ```