Skip to content

Commit

Permalink
Merge branch 'master' into issue_561
Browse files Browse the repository at this point in the history
  • Loading branch information
dhanainme committed Dec 11, 2020
2 parents 86a05ea + 8ecd581 commit f6329f6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
5 changes: 3 additions & 2 deletions test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ This folder contains nightly regression tests execututed against TorchServe mast

* CPU : ![Build Status](https://codebuild.us-east-1.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiS1QvY3lIUEdUb3hZVWNnbmJ2SEZCdExRNmNkNW9EVk1ZaFNldEk4Q0h3TU1qemwzQ29GNW0xMGFhZkxpOFpiMjUrZVVRVDUrSkh2ZDhBeFprdW5iNjRRPSIsIml2UGFyYW1ldGVyU3BlYyI6IjlvcjRqSTNMTmNhcExZbUwiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master)
* GPU : ![Build Status](https://codebuild.us-east-1.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiazI0eDNKZElyMjZDU1QweThPV1A2UmlXaVFmM3g4N0M0NGQ0aHdTQ09aR2pkNFJRUmNsd1A4aFk0K1Q3MmJKMG9oR1c0aHpYWlVRbWlGYS9mVmdIUW84PSIsIml2UGFyYW1ldGVyU3BlYyI6IjJxenJYam1lYXNZTFVvMjQiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master)
* Windows : ![Build Status](https://codebuild.us-east-1.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiMzN3Z2lyb1QzVzNJMzJFL1Z6czZDRG5CdW80dUk1c2hvRzlHZkhLcHRqZkJUN1VYRnhwbDlhVWpETUdYOFpJWUVBcGxxM2VmNFk3SUZPR3lnWmF3empBPSIsIml2UGFyYW1ldGVyU3BlYyI6IkhycnVqdFNqYnFDVVQ4aVIiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master)
* Windows : ![Build Status](https://codebuild.us-east-1.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiWVdOV3RLSU1qZ1pEL3A4b0VoSHlWVmd2T0RWOHF3SGF5T292ZkxJdkk4SmRsQnFTL2k3Z2IwZzU3VnUyV2tqWWNBMVdmb0R5dU4xVzlUaXhLWVlkbjNFPSIsIml2UGFyYW1ldGVyU3BlYyI6Inl1a3NiWDVwYzdXLzhvTVEiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=master)

Latest Test Logs : [CPU](https://torchserve-regression-test.s3.amazonaws.com/public/latest/test_exec.log) / [GPU](https://torchserve-regression-test-gpu.s3.amazonaws.com/public/latest/test_exec.log) / [Windows](https://torchserve-regression-test-win.s3.amazonaws.com/public/latest/test_exec.log)

Test Logs By Date - Update Date in URL : [CPU](https://torchserve-regression-test.s3.amazonaws.com/public/TS-NIGHTLY-REGRESSION-2020-12-03/tmp/test_exec.log) / [GPU](https://torchserve-regression-test-gpu.s3.amazonaws.com/public/TS-NIGHTLY-REGRESSION-2020-12-03/tmp/test_exec.log) / [Windows](https://torchserve-regression-test-win.s3.amazonaws.com/public/TS-NIGHTLY-REGRESSION-2020-10-06/tmp/test_exec.log)
Test Logs By Date - **Update Date in URL PATH of these links** : [CPU](https://torchserve-regression-test.s3.amazonaws.com/public/TS-NIGHTLY-REGRESSION-2020-12-11/tmp/test_exec.log) / [GPU](https://torchserve-regression-test-gpu.s3.amazonaws.com/public/TS-NIGHTLY-REGRESSION-2020-12-11/tmp/test_exec.log) / [Windows](https://torchserve-regression-test-win.s3.amazonaws.com/public/TS-NIGHTLY-REGRESSION-2020-12-11/test_exec.log)

For example update 2020-05-20 in https://torchserve-regression-test.s3.amazonaws.com/public/TS-NIGHTLY-REGRESSION-2020-05-20/tmp/test_exec.log with current date.

### Running the test manually.

Expand Down
7 changes: 6 additions & 1 deletion test/buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,9 @@ phases:

build:
commands:
- python test/regression_tests.py
- python test/regression_tests.py 2>&1 | tee /tmp/test_exec.log

artifacts:
files:
- /tmp/test_exec.log
name: TS-NIGHTLY-REGRESSION-$(date +%Y-%m-%d)
7 changes: 6 additions & 1 deletion test/buildspec_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@ phases:

build:
commands:
- python test\regression_tests.py
- powershell "python test\regression_tests.py | tee test_exec.log"

artifacts:
files:
- test_exec.log
name: TS-NIGHTLY-REGRESSION-$(Get-Date -Format "yyyy-MM-dd")

0 comments on commit f6329f6

Please sign in to comment.