1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-04-30 12:23:36 +00:00
Mirror
Go to file
dependabot[bot] 01a1b720b8
Bump github.com/golang/glog in /fileserver
Bumps [github.com/golang/glog](https://github.com/golang/glog) from 0.0.0-20160126235308-23def4e6c14b to 1.2.4.
- [Release notes](https://github.com/golang/glog/releases)
- [Commits](https://github.com/golang/glog/commits/v1.2.4)

---
updated-dependencies:
- dependency-name: github.com/golang/glog
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-28 17:31:44 +00:00
.github/workflows Update python to 3.12.8 for ci test () 2024-12-19 12:32:37 +08:00
ci Update python to 3.12.8 for ci test () 2024-12-19 12:32:37 +08:00
common Print app name when SEAFILE_LOG_TO_STDOUT is true () 2025-01-13 11:48:26 +08:00
controller Log format () 2024-10-24 10:46:41 +08:00
doc Delete unused doc () 2024-03-26 14:30:54 +08:00
fileserver Bump github.com/golang/glog in /fileserver 2025-01-28 17:31:44 +00:00
fuse Read database config from seafile.conf and env () 2024-11-05 17:42:24 +08:00
include Return 409 when gc conflict () 2024-12-30 15:03:54 +08:00
lib Return error when failed to get user from database () 2024-09-18 16:28:15 +08:00
m4 Initial commit of Seafile server core. 2016-08-19 13:54:16 +08:00
notification-server Update python to 3.12.8 for ci test () 2024-12-19 12:32:37 +08:00
python Add online gc () 2024-10-24 18:34:16 +08:00
scripts Don't create repo_id unique index () 2024-08-09 17:45:43 +08:00
server Check if repo_id is valid and set repo_id to VRepoInfo () 2025-01-13 17:51:59 +08:00
tests Don't test gc when indexing blocks () 2024-11-26 11:52:44 +08:00
tools Del seaf-init and ccnet-init commands () 2020-05-11 09:20:47 +08:00
.gitignore Add search files RPC () 2020-10-27 18:06:37 +08:00
autogen.sh Initial commit of Seafile server core. 2016-08-19 13:54:16 +08:00
configure.ac Merge branch '11.0' 2024-07-16 17:37:24 +08:00
LICENSE.txt Initial commit of Seafile server core. 2016-08-19 13:54:16 +08:00
Makefile.am get nickname from seahub database () 2024-07-10 16:34:33 +08:00
pytest.ini Add functional tests () 2018-01-16 17:10:26 +08:00
README.markdown fix build URL () 2023-12-12 13:57:42 +08:00
README.testing.md Update testing README 2018-01-16 18:19:33 +08:00
run_tests.sh Add functional tests () 2018-01-16 17:10:26 +08:00
updateversion.sh Initial commit of Seafile server core. 2016-08-19 13:54:16 +08:00

Seafile Server Tests

Run it locally

To run the tests, you need to install pytest first:

pip install -r ci/requirements.txt

Compile and install ccnet-server and seafile-server

cd ccnet-server
make
sudo make install

cd seafile-server
make
sudo make install

Then run the tests with

cd seafile-server
./run_tests.sh

By default the test script would try to start ccnet-server and seaf-server in /usr/local/bin, if you make install to another location, say /opt/local, run it like this:

SEAFILE_INSTALL_PREFIX=/opt/local ./run_tests.sh