Check test failure
This commit is contained in:
parent
c4f3a1de5b
commit
a1e8117afd
3 changed files with 16 additions and 2 deletions
14
.travis.yml
Normal file
14
.travis.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
language: python
|
||||
|
||||
os:
|
||||
- linux
|
||||
|
||||
python:
|
||||
- "3.6"
|
||||
|
||||
before_install:
|
||||
- sudo apt-get -y install libdb-dev exuberant-ctags
|
||||
- pip install jinja2 pygments bsddb3 falcon
|
||||
|
||||
script:
|
||||
- prove
|
||||
2
data.py
2
data.py
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/python3
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# This file is part of Elixir, a source code cross-referencer.
|
||||
#
|
||||
|
|
|
|||
2
query.py
2
query.py
|
|
@ -191,7 +191,7 @@ def query(cmd, *args):
|
|||
|
||||
def cmd_ident(version, ident, **kwargs):
|
||||
symbol_definitions, symbol_references = query("ident", version, ident)
|
||||
print("Symbol Definitions:")
|
||||
print("Symbol Definitionss:")
|
||||
for symbol_definition in symbol_definitions:
|
||||
print(symbol_definition)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue