diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 625fe7f9c..5e8e50b18 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,8 +6,8 @@ Pull request closes #_ _List the steps to test the PR_ These steps are generic, please adjust as necessary. ``` -cd tdrs-frontend && docker-compose -f docker-compose.yml -f docker-compose.local.yml up -d -cd tdrs-backend && docker-compose -f docker-compose.yml -f docker-compose.local.yml up -d +cd tdrs-frontend && docker-compose up --build +cd tdrs-backend && docker-compose up --build ``` 1. Open http://localhost:3000/ and sign in. diff --git a/tdrs-backend/tdpservice/parsers/validators/test/test_category3.py b/tdrs-backend/tdpservice/parsers/validators/test/test_category3.py index d33f1ffbb..924f63491 100644 --- a/tdrs-backend/tdpservice/parsers/validators/test/test_category3.py +++ b/tdrs-backend/tdpservice/parsers/validators/test/test_category3.py @@ -30,7 +30,6 @@ def _make_eargs(val): def _validate_and_assert(validator, val, exp_result, exp_message): result, msg = validator(val, _make_eargs(val)) - print(f'result: {result}; msg: {msg}') assert result == exp_result assert msg == exp_message diff --git a/tdrs-frontend/src/reducers/reports.js b/tdrs-frontend/src/reducers/reports.js index 9de986716..8564afc58 100644 --- a/tdrs-frontend/src/reducers/reports.js +++ b/tdrs-frontend/src/reducers/reports.js @@ -192,6 +192,7 @@ const reports = (state = initialState, action) => { fileName: file.fileName, section, uuid: file.uuid, + id: file.id, fileType: file.fileType, }) return { ...state, submittedFiles: updatedFiles }