mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 16:12:23 +03:00
467f4aef45
Summary: Ran ./run-tests.py --json and used the following script: import json import subprocess with open("report.json", "r") as f: tests = json.load(f) for name, t in tests.items(): if t["result"] == "success": print("%s successful" % name) subprocess.run("sed -i '/#require py2/d' %s" % name, shell=True) subprocess.run("sed -i '/require.*py2/d' %s" % name, shell=True) Reviewed By: singhsrb Differential Revision: D19664298 fbshipit-source-id: fa67c7c7abd110c9f0df9345daf09f2792aacd44
56 lines
1.0 KiB
Python
56 lines
1.0 KiB
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2 or any later version.
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from testutil.dott import feature, sh, testtmp # noqa: F401
|
|
|
|
|
|
sh % "newrepo"
|
|
sh % "setconfig 'ui.gitignore=1' 'ui.hgignore=0'"
|
|
|
|
sh % "cat" << r"""
|
|
*.tmp
|
|
build/
|
|
""" > ".gitignore"
|
|
|
|
sh % "mkdir build exp"
|
|
sh % "cat" << r"""
|
|
!*
|
|
""" > "build/.gitignore"
|
|
|
|
sh % "cat" << r"""
|
|
!i.tmp
|
|
""" > "exp/.gitignore"
|
|
|
|
sh % "touch build/libfoo.so t.tmp Makefile exp/x.tmp exp/i.tmp"
|
|
|
|
sh % "hg status" == r"""
|
|
? .gitignore
|
|
? Makefile
|
|
? exp/.gitignore
|
|
? exp/i.tmp"""
|
|
|
|
# Test global ignore files
|
|
|
|
sh % "cat" << r"""
|
|
*.pyc
|
|
""" > "$TESTTMP/globalignore"
|
|
|
|
sh % "touch x.pyc"
|
|
|
|
sh % "hg status" == r"""
|
|
? .gitignore
|
|
? Makefile
|
|
? exp/.gitignore
|
|
? exp/i.tmp
|
|
? x.pyc"""
|
|
|
|
sh % "hg status --config 'ui.ignore.global=$TESTTMP/globalignore'" == r"""
|
|
? .gitignore
|
|
? Makefile
|
|
? exp/.gitignore
|
|
? exp/i.tmp"""
|