diff options
author | Hui Lan <lanhui@zjnu.edu.cn> | 2021-02-08 21:25:30 +0800 |
---|---|---|
committer | Hui Lan <lanhui@zjnu.edu.cn> | 2021-02-08 21:25:30 +0800 |
commit | d74856fc16065c1c35f88559e1cedfbf618f2f86 (patch) | |
tree | 32e6690759c6b76bd0153d12f092f0f5e62a26cf | |
parent | afada8b93d27cdad77a94215c12483f690157d23 (diff) |
app/test/test_*.py: add # -*- coding: utf-8 -*- to resolve the pytest error: SyntaxError: Non-ASCII character.
-rw-r--r-- | app/test/test_add_word.py | 1 | ||||
-rw-r--r-- | app/test/test_login.py | 1 | ||||
-rw-r--r-- | app/test/test_next_essay.py | 1 | ||||
-rw-r--r-- | app/test/test_signup.py | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/app/test/test_add_word.py b/app/test/test_add_word.py index 6e6370a..0d5356a 100644 --- a/app/test/test_add_word.py +++ b/app/test/test_add_word.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Run the docker image using the following command: # docker run -d -p 4444:4444 selenium/standalone-chrome from selenium import webdriver diff --git a/app/test/test_login.py b/app/test/test_login.py index 17db772..88d08f4 100644 --- a/app/test/test_login.py +++ b/app/test/test_login.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Run the docker image using the following command: # docker run -d -p 4444:4444 selenium/standalone-chrome from selenium import webdriver diff --git a/app/test/test_next_essay.py b/app/test/test_next_essay.py index c9e3831..7a877ab 100644 --- a/app/test/test_next_essay.py +++ b/app/test/test_next_essay.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Run the docker image using the following command: # docker run -d -p 4444:4444 selenium/standalone-chrome from selenium import webdriver diff --git a/app/test/test_signup.py b/app/test/test_signup.py index fc8ec4a..867ca53 100644 --- a/app/test/test_signup.py +++ b/app/test/test_signup.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Run the docker image using the following command: # docker run -d -p 4444:4444 selenium/standalone-chrome from selenium import webdriver |