bepasty: enable tests
This commit is contained in:
parent
14a5830897
commit
7a0a6eddce
1 changed files with 16 additions and 3 deletions
|
@ -50,12 +50,25 @@ in with bepastyPython.pkgs; buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytest
|
build
|
||||||
|
codecov
|
||||||
|
flake8
|
||||||
|
pytestCheckHook
|
||||||
|
pytest-cov
|
||||||
selenium
|
selenium
|
||||||
|
tox
|
||||||
|
twine
|
||||||
];
|
];
|
||||||
|
|
||||||
# No tests in sdist
|
disabledTestPaths = [
|
||||||
doCheck = false;
|
# Can be enabled when werkzeug is updated to >2.2, see #245145
|
||||||
|
# and https://github.com/bepasty/bepasty-server/pull/303
|
||||||
|
"src/bepasty/tests/test_rest_server.py"
|
||||||
|
|
||||||
|
# These require a web browser
|
||||||
|
"src/bepasty/tests/screenshots.py"
|
||||||
|
"src/bepasty/tests/test_website.py"
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/bepasty/bepasty-server";
|
homepage = "https://github.com/bepasty/bepasty-server";
|
||||||
|
|
Loading…
Reference in a new issue