Skip to content

Commit 22d51e7

Browse files
committed
Renamed app.py
1 parent 0ba3b6e commit 22d51e7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test_evaluation_function.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# .github/workflows/test_endpoint.yml
1+
# .github/workflows/test_evaluation_function.yml
22
name: Endpoint Validation Test
33

44
on:
@@ -76,7 +76,7 @@ jobs:
7676
}'
7777
7878
# 2. Execute script and pipe the final JSON summary to a file
79-
python3 test_endpoint.py <<< "$EVENT_PAYLOAD" > report_data.json
79+
python3 test_evaluation_function.py <<< "$EVENT_PAYLOAD" > report_data.json
8080
8181
# 3. Read the output file to get the JSON data
8282
REPORT_DATA=$(cat report_data.json)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ COPY requirements.txt .
66
RUN pip install -r requirements.txt
77

88
# Copy the function code
9-
COPY app.py .
9+
COPY test_evaluation_function.py .
1010

1111
# Set the CMD to your handler (app.lambda_handler)
1212
CMD ["app.lambda_handler"]
File renamed without changes.

0 commit comments

Comments
 (0)