Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
l-n-s
gajim
Commits
1605b722
Commit
1605b722
authored
7 years ago
by
Philipp Hörist
Browse files
Options
Downloads
Plain Diff
Merge branch 'fixTest' into 'master'
Fix tests See merge request
gajim/gajim!192
parents
12e534d0
06b8eb58
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gajim/common/caps_cache.py
+2
-1
2 additions, 1 deletion
gajim/common/caps_cache.py
setup.py
+4
-2
4 additions, 2 deletions
setup.py
with
6 additions
and
3 deletions
gajim/common/caps_cache.py
+
2
−
1
View file @
1605b722
...
...
@@ -46,7 +46,7 @@ from nbxmpp import (NS_XHTML_IM, NS_ESESSION, NS_CHATSTATES,
FEATURE_BLACKLIST
=
[
NS_CHATSTATES
,
NS_XHTML_IM
,
NS_ESESSION
,
NS_JINGLE_ICE_UDP
,
NS_JINGLE_RTP_AUDIO
,
NS_JINGLE_RTP_VIDEO
,
NS_JINGLE_FILE_TRANSFER_5
]
from
gajim.common
import
app
# Query entry status codes
NEW
=
0
QUERIED
=
1
...
...
@@ -457,6 +457,7 @@ class MucCapsCache:
identities
,
features
,
data
=
[],
[],
[]
query_childs
=
stanza
.
getQueryChildren
()
if
not
query_childs
:
from
gajim.common
import
app
app
.
log
(
'
gajim.muc
'
).
warning
(
'
%s returned empty disco info
'
,
jid
)
return
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
4
−
2
View file @
1605b722
...
...
@@ -14,6 +14,8 @@ from setuptools.command.build_py import build_py as _build
from
distutils
import
log
from
distutils.util
import
convert_path
,
newer
import
subprocess
import
gajim
pos
=
[
x
for
x
in
os
.
listdir
(
'
po
'
)
if
x
[
-
3
:]
==
"
.po
"
]
...
...
@@ -179,14 +181,14 @@ class test(Command):
pass
def
run
(
self
):
os
.
system
(
"
./test/runtests.py
"
)
exit
(
subprocess
.
call
(
"
./test/runtests.py
"
)
)
class
test_nogui
(
test
):
description
=
"
Run tests without GUI
"
def
run
(
self
):
os
.
system
(
"
./test/runtests.py
-n
"
)
exit
(
subprocess
.
call
([
"
./test/runtests.py
"
,
"
-n
"
])
)
class
update_po
(
Command
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment