Skip to content

Commit 4aea901

Browse files
committed
Added coverage support for functional tests.
1 parent 5fdcb88 commit 4aea901

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.coveragerc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[run]
2+
parallel=True
3+
source=pgcli

requirements-dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ mock>=1.0.1
33
tox>=1.9.2
44
behave>=1.2.4
55
pexpect==3.3
6+
coverage==4.3.4

tests/features/environment.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ def before_all(context):
1616
os.environ['COLUMNS'] = "100"
1717
os.environ['PAGER'] = 'cat'
1818
os.environ['EDITOR'] = 'nano'
19+
os.environ["COVERAGE_PROCESS_START"] = os.getcwd() + "/../.coveragerc"
1920

2021
context.exit_sent = False
2122

@@ -30,7 +31,10 @@ def before_all(context):
3031
'pass': context.config.userdata.get('pg_test_pass', None),
3132
'dbname': db_name_full,
3233
'dbname_tmp': db_name_full + '_tmp',
33-
'vi': vi
34+
'vi': vi,
35+
'cli_command': context.config.userdata.get('pg_cli_command', None) or
36+
sys.executable +
37+
' -c "import coverage; coverage.process_startup(); import pgcli.main; pgcli.main.cli()"'
3438
}
3539

3640
# Store old env vars.

tests/features/steps/basic_commands.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ def step_run_cli(context):
1717
"""
1818
Run the process using pexpect.
1919
"""
20-
context.cli = pexpect.spawnu('pgcli')
20+
cli_cmd = context.conf.get('cli_command')
21+
context.cli = pexpect.spawnu(cli_cmd)
2122
context.exit_sent = False
2223

2324

0 commit comments

Comments
 (0)