scenarios/high_error_rates.py [140:161]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @scenario(weight=8)
    async def scenario_log_error(session):
        async with session.get(join(SERVER_URL, 'log-error')) as resp:
            assert resp.status == 500


    @scenario(weight=8)
    async def scenario_log_message(session):
        async with session.get(join(SERVER_URL, 'log-message')) as resp:
            assert resp.status == 500


    @scenario(weight=8)
    async def scenario_is_it_coffee_time_typo(session):
        async with session.get(join(SERVER_URL, 'is-it-coffee-time')) as resp:
            assert resp.status == 500


    @scenario(weight=8)
    async def scenario_throw_error(session):
        async with session.get(join(SERVER_URL, 'throw-error')) as resp:
            assert resp.status == 500
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scenarios/high_error_rates.py [171:192]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @scenario(weight=8)
    async def scenario_log_error(session):
        async with session.get(join(SERVER_URL, 'log-error')) as resp:
            assert resp.status == 500


    @scenario(weight=8)
    async def scenario_log_message(session):
        async with session.get(join(SERVER_URL, 'log-message')) as resp:
            assert resp.status == 500


    @scenario(weight=8)
    async def scenario_is_it_coffee_time_typo(session):
        async with session.get(join(SERVER_URL, 'is-it-coffee-time')) as resp:
            assert resp.status == 500


    @scenario(weight=8)
    async def scenario_throw_error(session):
        async with session.get(join(SERVER_URL, 'throw-error')) as resp:
            assert resp.status == 500
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



