Skip to content

Commit 03d4326

Browse files
authored
Merge pull request #68 from dalthviz/py27_libsass
PR: Constraint libsass to 0.21.0 and update .authors.yml file
2 parents c657390 + c0057dc commit 03d4326

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.authors.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,14 @@
4545
num_commits: 22
4646
first_commit: 2015-08-16 05:22:05
4747
github: yann-lty
48-
- name: Daniel Althviz
48+
- name: Daniel Althviz Moré
4949
5050
aliases:
5151
- dalthviz
52-
github: dalthviz
52+
- Daniel Althviz
53+
github: dalthviz
54+
- name: Sebastian Weigand
55+
56+
aliases:
57+
- s-weigand
58+
github: s-weigand

requirements/dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
codecov
2+
flaky
23
isort==4.3.15
34
pycodestyle==2.5.0
45
pydocstyle==3.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_description():
8181
'Topic :: Software Development :: Libraries :: Python Modules',
8282
),
8383
install_requires=[
84-
'libsass',
84+
'libsass<=0.21.0',
8585
],
8686
keywords='qt sass qtsass scss css qss stylesheets',
8787
)

tests/test_watchers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import time
1919

2020
# Third party imports
21+
from flaky import flaky
2122
import pytest
2223

2324
# Local imports
@@ -42,6 +43,7 @@ def __call__(self, *args, **kwargs):
4243
@pytest.mark.parametrize(
4344
'Watcher', (PollingWatcher, QtWatcher),
4445
)
46+
@flaky(max_runs=3)
4547
def test_watchers(Watcher, tmpdir):
4648
"""Stress test Watcher implementations"""
4749

0 commit comments

Comments
 (0)