Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 5343e80

Browse files
committed
Switch to dmenv
1 parent ed6bd53 commit 5343e80

7 files changed

Lines changed: 49 additions & 448 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ __pycache__
55
.cache
66
.coverage
77
htmlcov
8+
9+
.venv/

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ matrix:
1111
sudo: true
1212

1313
install:
14-
- pip install poetry
15-
- poetry install
14+
- curl https://raw.githubusercontent.com/dmerejkowsky/dmenv/master/installer.py -o dmenv-installer.py
15+
- python3 dmenv-installer.py --dest ./dmenv
16+
- ./dmenv install
1617

1718
script:
1819
- bash ci.sh

ci.sh

100644100755
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set -x
22
set -e
33

4-
poetry run pyflakes ui/__init__.py ui/tests/test_ui.py
5-
poetry run pytest
6-
poetry run sphinx-build -W docs docs/_build/html
4+
pyflakes ui/__init__.py ui/tests/test_ui.py
5+
pytest
6+
sphinx-build -W docs docs/_build/html

0 commit comments

Comments
 (0)