Skip to content

Commit 97a7200

Browse files
committed
convert from bootstrap_env.py to Pipfile
1 parent 7a9fd53 commit 97a7200

File tree

4 files changed

+64
-143
lines changed

4 files changed

+64
-143
lines changed

.tmuxp.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
session_name: libtmux
22
start_directory: ./ # load session relative to config location (project root).
3-
before_script: ./bootstrap_env.py # ./ to load relative to project root.
3+
before_script: pipenv install --dev --skip-lock
4+
shell_command_before:
5+
- '[ -d `pipenv --venv` ] && source `pipenv --venv`/bin/activate && reset'
46
windows:
57
- window_name: libtmux
68
focus: True
79
layout: main-horizontal
810
options:
911
main-pane-height: 35
10-
shell_command_before:
11-
- '[ -d .venv -a -f .venv/bin/activate ] && source .venv/bin/activate'
1212
panes:
1313
- focus: true
1414
- pane
1515
- make watch_test
16-
1716
- window_name: docs
1817
layout: main-horizontal
1918
options:
2019
main-pane-height: 35
2120
start_directory: doc/
22-
shell_command_before:
23-
- '[ -d ../.venv -a -f ../.venv/bin/activate ] && source ../.venv/bin/activate'
2421
panes:
2522
- focus: true
2623
- pane

Pipfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[[source]]
2+
url = "https://pypi.python.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
"e1839a8" = {path = ".", editable = true}
8+
9+
[dev-packages]
10+
pytest = "==3.2.3"

Pipfile.lock

Lines changed: 51 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bootstrap_env.py

Lines changed: 0 additions & 137 deletions
This file was deleted.

0 commit comments

Comments
 (0)