diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-08-31 15:04:16 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-08-31 15:19:11 +0300 |
commit | 47119e285dfb4f2486a471f9b8c8714952acefea (patch) | |
tree | 0abb56f6e3a81420b218ade7df05606b21f67dc2 | |
parent | Travis: stress_test.sh: prepare to move to test/ (diff) | |
download | math-server-47119e285dfb4f2486a471f9b8c8714952acefea.tar.gz math-server-47119e285dfb4f2486a471f9b8c8714952acefea.zip |
stress_test.sh: move to test/
-rw-r--r-- | .ci/.gitattributes | 1 | ||||
-rw-r--r-- | .gitattributes | 2 | ||||
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | test/stress_test.sh (renamed from .ci/stress_test.sh) | 2 |
4 files changed, 4 insertions, 3 deletions
diff --git a/.ci/.gitattributes b/.ci/.gitattributes deleted file mode 100644 index dfdb8b7..0000000 --- a/.ci/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -*.sh text eol=lf diff --git a/.gitattributes b/.gitattributes index 176a458..d76765e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,3 @@ * text=auto + +*.sh text eol=lf diff --git a/.travis.yml b/.travis.yml index 163a334..da019f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,7 @@ script: - "$HOME/install/bin/math-server-unit-tests" - "$HOME/install/bin/math-server-benchmarks" - - ../.ci/stress_test.sh + - ../test/stress_test.sh jobs: fast_finish: true diff --git a/.ci/stress_test.sh b/test/stress_test.sh index eba52d2..ceac401 100755 --- a/.ci/stress_test.sh +++ b/test/stress_test.sh @@ -16,7 +16,7 @@ readonly script_dir install_dir="$HOME/install" readonly server_path='bin/math-server' readonly client_path='bin/math-client' -readonly stress_test_path="$script_dir/../test/stress_test.py" +readonly stress_test_path="$script_dir/stress_test.py" readonly server_port=16666 server_pid= |