tests/test-issue1102.t
author Anton Shestakov <av6@dwimlabs.net>
Fri, 27 May 2022 14:37:12 +0400
changeset 49236 e5e3a340b965
parent 28251 4591cd6b6794
child 49518 805419729e11
permissions -rw-r--r--
tests: remove hg10 requirement from test-check-pylint.t Since pylint does its own directory traversal to find files to check and doesn't use hg locate command, this requirement is not valid. See also a29f071751df.

  $ rm -rf a
  $ hg init a
  $ cd a
  $ echo a > a
  $ hg ci -Am0
  adding a
  $ hg tag t1 # 1
  $ hg tag --remove t1 # 2

  $ hg co 1
  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
  $ hg tag -f -r0 t1
  $ hg tags
  tip                                3:a49829c4fc11
  t1                                 0:f7b1eb17ad24

  $ cd ..