Fix installation issue with Python 3.4 and aiohttp cors

pull/1061/head
Julien Duponchelle 7 years ago
parent 2fe589b1a8
commit cdcdba7411
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -6,6 +6,7 @@ python:
sudo: false
cache: pip
install:
- pip install -U setuptools pip
- python setup.py install
- pip install -rdev-requirements.txt
script:

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import gc
import pytest
import socket
import asyncio
@ -228,6 +228,7 @@ def run_around_tests(monkeypatch, port_manager, controller, config):
shutil.rmtree(tmppath)
except:
pass
gc.collect()
@pytest.fixture

Loading…
Cancel
Save