Home | History | Annotate | Download | only in typ
      1 Name: typ
      2 URL: https://github.com/dpranke/typ.git
      3 Version: 0.9.5
      4 Revision: a277897604718c50b8353b4bce15d6b78cacdfca
      5 Security Critical: no
      6 License: Apache 2.0
      7 License File: LICENSE
      8 
      9 Description:
     10 
     11 typ is a simple wrapper around Python's unittest library that provides a
     12 somewhat nicer command-line interface, parallel test execution,
     13 code coverage support, and support for Chromium's JSON Results format.
     14 
     15 To update this copy of typ from the source repo (assuming you are in
     16 the same directory as this file).
     17 
     18     # can just do "sed -n '/^   /p' README.chromium | bash -e"
     19     cd ..
     20     git clone https://github.com/dpranke/typ.git typ_new
     21     revision=$(cd typ_new && git log -1 | head -1 | awk '{ print $2 }')
     22     version=$(cd typ_new && python -m typ --version)
     23     cp typ/OWNERS typ_new
     24     cat typ/README.chromium | sed -e "s/^Version: .*/Version: $version/" \
     25                                   -e "s/^Revision: .*/Revision: $revision/" \
     26                                   > typ_new/README.chromium
     27     rm -fr typ_new/.git typ_new/.gitignore typ/
     28     mv typ_new typ
     29