mirror of
https://git.freebsd.org/ports.git
synced 2025-07-02 10:00:37 -04:00
Matrix is an ambitious new ecosystem for open federated Instant Messaging and VoIP. The basics you need to know to get up and running are: * Everything in Matrix happens in a room. Rooms are distributed and do not exist on any single server. Rooms can be located using convenience aliases like #matrix:matrix.org or #test:localhost:8448. * Matrix user IDs look like @matthew:matrix.org (although in the future you will normally refer to yourself and others using a 3PID: email address, phone number, etc rather than manipulating Matrix user IDs) Synapse is currently in rapid development, but as of version 0.5 we believe it is sufficiently stable to be run as an internet-facing service for real usage! WWW: https://www.matrix.org PR: 205914 Submitted by: Brendan Molloy <brendan+freebsd@bbqsrc.net>
20 lines
718 B
INI
20 lines
718 B
INI
--- tox.ini.orig 2016-01-04 14:02:50 UTC
|
|
+++ tox.ini
|
|
@@ -10,8 +10,9 @@ deps =
|
|
junitxml
|
|
setenv =
|
|
PYTHONDONTWRITEBYTECODE = no_byte_code
|
|
+# Assumes bash unnecessarily
|
|
commands =
|
|
- /bin/bash -c "coverage run {env:COVERAGE_OPTS:} --source={toxinidir}/synapse \
|
|
+ /bin/sh -c "coverage run {env:COVERAGE_OPTS:} --source={toxinidir}/synapse \
|
|
{envbindir}/trial {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}"
|
|
{env:DUMP_COVERAGE_COMMAND:coverage report -m}
|
|
|
|
@@ -26,4 +27,5 @@ skip_install = True
|
|
basepython = python2.7
|
|
deps =
|
|
flake8
|
|
-commands = /bin/bash -c "flake8 synapse {env:PEP8SUFFIX:}"
|
|
+# Assumes bash unnecessarily
|
|
+commands = /bin/sh -c "flake8 synapse {env:PEP8SUFFIX:}"
|