-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
ci: add Codecov's test analytics and bundle analysis features #52179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
191d07d
ci: add Codecov's test analytics and bundle analysis features
spalmurray 41764b9
ci: always collect and upload test results, not just on coverage runs
spalmurray cb4e760
ci: tweak Codecov webpack plugin config
spalmurray c795fb1
ci: fix whitespace
spalmurray 9c3bdf2
ci: always upload test results, even if tests fail
spalmurray 0395eaa
ci: change if always() to if not cancelled on test results uploads
spalmurray File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,7 +96,8 @@ jobs: | |
| - name: PHPUnit | ||
| run: composer run test:files_external -- \ | ||
| apps/files_external/tests/Storage/FtpTest.php \ | ||
| ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| --log-junit junit.xml \ | ||
| ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -105,6 +106,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-files-external-ftp | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-files-external-ftp | ||
|
|
||
| - name: ftpd logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -94,7 +94,8 @@ jobs: | |
| run: composer run test:files_external -- \ | ||
| apps/files_external/tests/Storage/Amazons3Test.php \ | ||
| apps/files_external/tests/Storage/VersionedAmazonS3Test.php \ | ||
| ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| --log-junit junit.xml \ | ||
| ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -103,6 +104,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-files-external-s3 | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-files-external-s3 | ||
|
|
||
| - name: S3 logs | ||
| if: always() | ||
| run: | | ||
|
|
@@ -161,7 +168,8 @@ jobs: | |
| run: composer run test:files_external -- \ | ||
| apps/files_external/tests/Storage/Amazons3Test.php \ | ||
| apps/files_external/tests/Storage/VersionedAmazonS3Test.php \ | ||
| ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| --log-junit junit.xml \ | ||
| ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -170,6 +178,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-files-external-s3 | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-files-external-s3 | ||
|
|
||
| - name: S3 logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -85,7 +85,8 @@ jobs: | |
| run: composer run test:files_external -- \ | ||
| apps/files_external/tests/Storage/SftpTest.php \ | ||
| apps/files_external/tests/Storage/SFTP_KeyTest.php \ | ||
| ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| --log-junit junit.xml \ | ||
| ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -94,6 +95,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-files-external-sftp | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-files-external-sftp | ||
|
|
||
| - name: sftpd logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -90,7 +90,8 @@ jobs: | |
| - name: PHPUnit | ||
| run: composer run test:files_external -- --verbose \ | ||
| apps/files_external/tests/Storage/SmbTest.php \ | ||
| ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| --log-junit junit.xml \ | ||
| ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -99,6 +100,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-files-external-smb | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-files-external-smb | ||
|
|
||
| files-external-smb-summary: | ||
| runs-on: ubuntu-latest-low | ||
| needs: [changes, files-external-smb] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -87,7 +87,8 @@ jobs: | |
| - name: PHPUnit | ||
| run: composer run test:files_external -- --verbose \ | ||
| apps/files_external/tests/Storage/WebdavTest.php \ | ||
| ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| --log-junit junit.xml \ | ||
| ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -96,6 +97,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-files-external-webdav | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-files-external-webdav | ||
|
|
||
| files-external-webdav-summary: | ||
| runs-on: ubuntu-latest-low | ||
| needs: [changes, files-external-webdav-apache] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,7 +75,8 @@ jobs: | |
|
|
||
| - name: PHPUnit | ||
| run: composer run test:files_external -- \ | ||
| ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| --log-junit junit.xml \ | ||
| ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -84,6 +85,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-files-external-generic | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-files-external-generic | ||
|
|
||
| files-external-summary: | ||
| runs-on: ubuntu-latest-low | ||
| needs: [changes, files-external-generic ] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -103,6 +103,10 @@ jobs: | |
| with: | ||
| files: ./coverage/lcov.info | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
|
|
||
| jsunit: | ||
| runs-on: ubuntu-latest | ||
| needs: [versions, changes] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -101,7 +101,7 @@ jobs: | |
| OBJECT_STORE: azure | ||
| OBJECT_STORE_KEY: nextcloud | ||
| OBJECT_STORE_SECRET: bmV4dGNsb3Vk | ||
| run: composer run test -- --group PRIMARY-azure ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| run: composer run test -- --group PRIMARY-azure --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -110,6 +110,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-azure | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-azure | ||
|
|
||
| - name: Azurite logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -107,7 +107,7 @@ jobs: | |
| OBJECT_STORE: s3 | ||
| OBJECT_STORE_KEY: nextcloud | ||
| OBJECT_STORE_SECRET: bWluaW8tc2VjcmV0LWtleS1uZXh0Y2xvdWQ= | ||
| run: composer run test -- --group PRIMARY-s3 ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| run: composer run test -- --group PRIMARY-s3 --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -116,6 +116,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-s3 | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-s3 | ||
|
|
||
| - name: S3 logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -97,7 +97,7 @@ jobs: | |
| env: | ||
| OBJECT_STORE: swift | ||
| OBJECT_STORE_SECRET: veryfast | ||
| run: composer run test -- --group PRIMARY-swift ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }} | ||
| run: composer run test -- --group PRIMARY-swift --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -106,6 +106,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-swift | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-swift | ||
|
|
||
| - name: Swift logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,7 +120,7 @@ jobs: | |
| php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0 | ||
|
|
||
| - name: PHPUnit | ||
| run: composer run test:db ${{ matrix.coverage && ' -- --coverage-clover ./clover.db.xml' || '' }} | ||
| run: composer run test:db -- --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.db.xml' || '' }} | ||
|
|
||
| - name: Upload db code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -129,6 +129,12 @@ jobs: | |
| files: ./clover.db.xml | ||
| flags: phpunit-mariadb | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-mariadb | ||
|
|
||
| summary: | ||
| permissions: | ||
| contents: none | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -97,7 +97,7 @@ jobs: | |
| php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0 | ||
|
|
||
| - name: PHPUnit memcached tests | ||
| run: composer run test -- --group Memcache,Memcached ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
| run: composer run test -- --group Memcache,Memcached --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.xml' || '' }} | ||
|
|
||
| - name: Upload code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -106,6 +106,12 @@ jobs: | |
| files: ./clover.xml | ||
| flags: phpunit-memcached | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-memcached | ||
|
|
||
| - name: Print logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -155,7 +155,7 @@ jobs: | |
| php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0 | ||
|
|
||
| - name: PHPUnit | ||
| run: composer run test:db ${{ matrix.coverage && ' -- --coverage-clover ./clover.db.xml' || '' }} | ||
| run: composer run test:db -- --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.db.xml' || '' }} | ||
|
|
||
| - name: Upload db code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -164,6 +164,12 @@ jobs: | |
| files: ./clover.db.xml | ||
| flags: phpunit-mysql | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-mysql | ||
|
|
||
| - name: Print logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -120,7 +120,7 @@ jobs: | |
| php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0 | ||
|
|
||
| - name: PHPUnit | ||
| run: composer run test:db ${{ matrix.coverage && ' -- --coverage-clover ./clover.db.xml' || '' }} | ||
| run: composer run test:db -- --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.db.xml' || '' }} | ||
|
|
||
| - name: Upload db code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -129,6 +129,12 @@ jobs: | |
| files: ./clover.db.xml | ||
| flags: phpunit-mysql | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-mysql | ||
|
|
||
| - name: Print logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -103,7 +103,7 @@ jobs: | |
| php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0 | ||
|
|
||
| - name: PHPUnit nodb testsuite | ||
| run: composer run test -- --exclude-group DB,SLOWDB ${{ matrix.coverage && ' --coverage-clover ./clover.nodb.xml' || '' }} | ||
| run: composer run test -- --exclude-group DB,SLOWDB --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.nodb.xml' || '' }} | ||
|
|
||
| - name: Upload nodb code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -112,6 +112,12 @@ jobs: | |
| files: ./clover.nodb.xml | ||
| flags: phpunit-nodb | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-nodb | ||
|
|
||
| - name: Print logs | ||
| if: always() | ||
| run: | | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -125,7 +125,7 @@ jobs: | |
| php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0 | ||
|
|
||
| - name: PHPUnit | ||
| run: composer run test:db ${{ matrix.coverage && ' -- --coverage-clover ./clover.db.xml' || '' }} | ||
| run: composer run test:db -- --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.db.xml' || '' }} | ||
|
|
||
| - name: Upload db code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -134,6 +134,12 @@ jobs: | |
| files: ./clover.db.xml | ||
| flags: phpunit-oci | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-oci | ||
|
|
||
| - name: Run repair steps | ||
| run: | | ||
| ./occ maintenance:repair --include-expensive | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -115,7 +115,7 @@ jobs: | |
| php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0 | ||
|
|
||
| - name: PHPUnit database tests | ||
| run: composer run test:db ${{ matrix.coverage && ' -- --coverage-clover ./clover.db.xml' || '' }} | ||
| run: composer run test:db -- --log-junit junit.xml ${{ matrix.coverage && '--coverage-clover ./clover.db.xml' || '' }} | ||
|
|
||
| - name: Upload db code coverage | ||
| if: ${{ !cancelled() && matrix.coverage }} | ||
|
|
@@ -124,6 +124,12 @@ jobs: | |
| files: ./clover.db.xml | ||
| flags: phpunit-postgres | ||
|
|
||
| - name: Upload test results | ||
| if: ${{ !cancelled() }} | ||
| uses: codecov/[email protected] | ||
| with: | ||
| flags: phpunit-postgres | ||
|
|
||
| - name: Run repair steps | ||
| run: | | ||
| ./occ maintenance:repair --include-expensive | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.