Skip to content
Snippets Groups Projects
Commit f9a52a96 authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

tests: ignore test-storage when using Rust

This is only relevant for Python code and the SQLite backend, which is in a
half-abandoned state.
parent 1b23aaf5
No related branches found
No related tags found
2 merge requests!737Improvements to the Rust index's performance,!708Implement pure rust revlog Index
......@@ -15,6 +15,17 @@
from mercurial.testing import storage as storagetesting
try:
from mercurial import rustext
rustext.__name__
# Does not pass with pure Rust index
import sys
sys.exit(80)
except ImportError:
pass
try:
from hgext import sqlitestore
except ImportError:
sqlitestore = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment