tahoe-lafs: run tests
This commit is contained in:
parent
23a814e1ad
commit
d0849b6fdd
@ -17,7 +17,7 @@ pythonPackages.buildPythonApplication rec {
|
||||
|
||||
outputs = [ "out" "doc" "info" ];
|
||||
|
||||
patchPhase = ''
|
||||
postPatch = ''
|
||||
sed -i "src/allmydata/util/iputil.py" \
|
||||
-es"|_linux_path = '/sbin/ifconfig'|_linux_path = '${nettools}/bin/ifconfig'|g"
|
||||
|
||||
@ -32,6 +32,22 @@ pythonPackages.buildPythonApplication rec {
|
||||
sed -i 's/"pycrypto.*"/"pycrypto"/' src/allmydata/_auto_deps.py
|
||||
'';
|
||||
|
||||
# Remove broken and expensive tests.
|
||||
preConfigure = ''
|
||||
(
|
||||
cd src/allmydata/test
|
||||
|
||||
# Buggy?
|
||||
rm cli/test_create.py test_backupdb.py
|
||||
|
||||
# These require Tor and I2P.
|
||||
rm test_connections.py test_iputil.py test_hung_server.py test_i2p_provider.py test_tor_provider.py
|
||||
|
||||
# Expensive
|
||||
rm test_system.py
|
||||
)
|
||||
'';
|
||||
|
||||
nativeBuildInputs = with pythonPackages; [ sphinx texinfo ];
|
||||
|
||||
buildInputs = with pythonPackages; [ unzip numpy mock ];
|
||||
@ -59,8 +75,7 @@ pythonPackages.buildPythonApplication rec {
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
# Still broken. ~ C.
|
||||
# trial allmydata
|
||||
trial --rterrors allmydata
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
Loading…
Reference in New Issue
Block a user