huge-build-outputΒΆ

Generate a huge build output (512Kb).

Build should pass. Output should be stripped to 1Mb after sending to cold storage and a message saying this should be shown to the command output in the build output page.

Note

In case this build has been triggered multiple times, we could manually delete the Version to remove all this testing data.


Sphinx configuration file to build this docs (see full file),

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-

# Default settings
project = 'Test Builds'
extensions = [
    'sphinx_autorun',
]

# Include all your settings here
html_theme = 'sphinx_rtd_theme'

# Generates a huge build output
import os
# https://docs.python.org/3/library/os.html#os.urandom
print(os.urandom(512 * 1024))






>>> # Build at
>>> import datetime
>>> datetime.datetime.utcnow()  # UTC
datetime.datetime(2018, 12, 10, 14, 58, 5, 829466)