Skip to content

Commit

Permalink
chore: fix GHA Readme badge
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed May 1, 2024
1 parent 5472ec0 commit b21aa87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
python-libfaketime: fast date/time mocking
==========================================

[![github actions](https://github.com/simon-weber/python-libfaketime/actions/workflows/main.yml/badge.svg)](https://github.com/simon-weber/python-libfaketime/actions)
[![github actions](https://github.com/simon-weber/python-libfaketime/actions/workflows/tests.yaml/badge.svg)](https://github.com/simon-weber/python-libfaketime/actions/workflows/tests.yaml)
[![pypi](https://img.shields.io/pypi/v/libfaketime.svg)](https://pypi.python.org/pypi/libfaketime)
[![repominder](https://img.shields.io/badge/dynamic/json.svg?label=release&query=%24.status&maxAge=43200&uri=https%3A%2F%2Fwww.repominder.com%2Fbadge%2FeyJmdWxsX25hbWUiOiAic2ltb24td2ViZXIvcHl0aG9uLWxpYmZha2V0aW1lIn0%3D%2F&link=https%3A%2F%2Fwww.repominder.com%2F)](https://www.repominder.com)

Expand Down
2 changes: 1 addition & 1 deletion libfaketime/vendor/libfaketime
Submodule libfaketime updated 70 files
+23 −0 .github/workflows/make-test.yml
+8 −1 .gitignore
+21 −0 .travis.yml
+2 −0 Makefile
+63 −0 NEWS
+263 −7 README
+40 −16 README.OSX
+27 −20 README.developers
+67 −0 README.packagers
+13 −7 TODO
+1 −1 man/Makefile
+42 −24 man/faketime.1
+0 −25 packaging/Linux/Arch/PKGBUILD-32bit.txt
+0 −30 packaging/Linux/Debian/avoid-spurious-lrt.patch
+0 −40 packaging/Linux/Debian/control
+0 −29 packaging/Linux/Debian/fix-infinite-recursion-on-real_clock_gettime.patch
+0 −3 packaging/Linux/Debian/libfaketime.install
+0 −17 packaging/Linux/Debian/rules
+0 −13 packaging/Linux/Redhat/libfaketime-fix-infinite-recursion-on-real_clock_gettime.patch
+0 −55 packaging/Linux/Redhat/libfaketime.spec.txt
+0 −53 packaging/OSX/Fink/libfaketime.info
+0 −21 packaging/OSX/Homebrew/libfaketime.rb
+0 −45 packaging/OSX/MacPorts/Portfile
+0 −12 packaging/OSX/MacPorts/patch-test-Makefile.OSX.diff
+0 −65 packaging/OSX/README
+0 −14 packaging/README
+68 −20 src/Makefile
+24 −7 src/Makefile.OSX
+58 −17 src/faketime.c
+40 −1 src/faketime_common.h
+1,838 −342 src/libfaketime.c
+1 −1 src/sunos_endian.h
+16 −4 src/time_ops.h
+52 −5 test/Makefile
+1 −1 test/Makefile.OSX
+8 −0 test/_libtest.c
+5 −0 test/_run_test.c
+7 −0 test/_use_lib_test.c
+2 −1 test/functests/common.inc
+7 −6 test/functests/test_exclude_mono.sh
+19 −2 test/functests/test_walkone.sh
+21 −0 test/randomtest.sh
+40 −0 test/repeat_random.c
+72 −0 test/snippets/README
+8 −0 test/snippets/clock_gettime.c
+1 −0 test/snippets/clock_gettime.variable
+8 −0 test/snippets/clock_gettime_heap.c
+1 −0 test/snippets/clock_gettime_heap.variable
+6 −0 test/snippets/getentropy.c
+1 −0 test/snippets/getentropy.variable
+2 −0 test/snippets/getpid.c
+1 −0 test/snippets/getpid.variable
+7 −0 test/snippets/getrandom.c
+1 −0 test/snippets/getrandom.variable
+9 −0 test/snippets/include_headers.h
+2 −0 test/snippets/syscall.c
+8 −0 test/snippets/syscall_clock_gettime.c
+1 −0 test/snippets/syscall_clock_gettime.variable
+8 −0 test/snippets/syscall_clock_gettime_heap.c
+1 −0 test/snippets/syscall_clock_gettime_heap.variable
+2 −0 test/snippets/time.c
+1 −0 test/snippets/time.variable
+19 −17 test/test.sh
+14 −8 test/test_OSX.sh
+10 −0 test/test_constructors.sh
+54 −0 test/test_variable_data.sh
+21 −0 test/timetest.c
+46 −0 test/variadic/inner.c
+70 −0 test/variadic/main.c
+21 −0 test/variadic/outer.c

0 comments on commit b21aa87

Please sign in to comment.