We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentda32884 commitdfd1908Copy full SHA for dfd1908
_docs/testing/test-reports.md
@@ -502,6 +502,27 @@ The icons shown are specified by the `REPORT_TYPE` variable. The following optio
502
503
If you don't provide a `REPORT_TYPE`, Codefresh uses a default icon.
504
505
+## Uploading large test reports
506
+
507
+By default, the maximum size for a test report is 1000MB. Override the default size through the `MAX_UPLOAD_SIZE_MB` environment variable.
508
509
+Example:
510
511
+{% highlight yaml %}
512
+{% raw %}
513
+unit_test_reporting_step:
514
+title:Upload Mocha test reports
515
+image:codefresh/cf-docker-test-reporting
516
+working_directory:/codefresh/volume/demochat/
517
+environment:
518
+-REPORT_DIR=mochawesome-report
519
+-REPORT_INDEX_FILE=mochawesome.html
520
+-CLEAR_TEST_REPORT=true
521
+-BUCKET_NAME=my-bucket-name
522
+-CF_STORAGE_INTEGRATION=google
523
+-MAX_UPLOAD_SIZE_MB=3000
524
+{% endraw %}
525
+{% endhighlight %}
526
527
## Getting results from tests that fail
528