Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: tests/conftest.py

Issue 29805580: Issue 6728 - Remove Mercurial dependency (Closed)
Patch Set: Address PS4 comment Created July 9, 2018, 6:13 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cms/sources.py ('k') | tests/expected_output/en/rel_path@static » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import os 1 import os
2 import pytest 2 import pytest
3 import shutil 3 import shutil
4 import subprocess
5 4
6 5
7 ROOTPATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 6 ROOTPATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
8 7
9 8
10 @pytest.fixture(scope='session') 9 @pytest.fixture(scope='session')
11 def temp_site(tmpdir_factory): 10 def temp_site(tmpdir_factory):
12 out_dir = tmpdir_factory.mktemp('temp_out') 11 out_dir = tmpdir_factory.mktemp('temp_out')
13 site_dir = out_dir.join('test_site').strpath 12 site_dir = out_dir.join('test_site').strpath
14 13
15 shutil.copytree(os.path.join(ROOTPATH, 'tests', 'test_site'), site_dir) 14 shutil.copytree(os.path.join(ROOTPATH, 'tests', 'test_site'), site_dir)
16 subprocess.check_call(['hg', 'init', site_dir])
17 subprocess.check_call(['hg', '-R', site_dir, 'commit', '-A', '-m', 'foo'])
18
19 subprocess.check_call(['hg', '-R', site_dir, 'bookmark', 'master'])
20 subprocess.check_call(['hg', '-R', site_dir, 'bookmark', 'test'])
21 subprocess.check_call(['touch', os.path.join(site_dir, 'pages', 'bar.md')])
22 subprocess.check_call(['hg', '-R', site_dir, 'commit', '-A', '-m', 'bar'])
23 yield site_dir 15 yield site_dir
OLDNEW
« no previous file with comments | « cms/sources.py ('k') | tests/expected_output/en/rel_path@static » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld