You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -390,14 +390,19 @@ For our single branch ci_prod, automatically deployed latest yaml with latest ag
390
390
## For adding new tests
391
391
392
392
1. Add the test python file with your test code under `tests` directory
393
-
2. Build the docker image, recommended to use ACR & MCR
393
+
2. Make sure all the files has Unix-style line ending (LF) instead of Windows-style (CRLF). Run below command to convert all files in a directoty from CRLF to LF:
394
+
```
395
+
cd ~/Docker-Provider/test # based on your repo path
396
+
find ./e2e -type f -exec sed -i 's/\r$//' {} +
397
+
```
398
+
3. Build the docker image, recommended to use ACR & MCR
394
399
```
395
400
cd ~/Docker-Provider/test/e2e/src # based on your repo path
0 commit comments