aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorDean Moldovan <dean0x7d@gmail.com>2016-08-12 13:50:00 +0200
committerDean Moldovan <dean0x7d@gmail.com>2016-08-19 13:19:38 +0200
commita0c1ccf0a9487ce2516ad8eee27202e512affb60 (patch)
tree8404f384b7ff2e09c5340d48ab70e012c40c28b3 /.gitignore
parent192eb88475794c0598dc244806dc259dfb688035 (diff)
downloadpybind11-a0c1ccf0a9487ce2516ad8eee27202e512affb60.tar.gz
Port tests to pytest
Use simple asserts and pytest's powerful introspection to make testing simpler. This merges the old .py/.ref file pairs into simple .py files where the expected values are right next to the code being tested. This commit does not touch the C++ part of the code and replicates the Python tests exactly like the old .ref-file-based approach.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index d1676c9b..ab667585 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,10 +3,9 @@ CMakeFiles
Makefile
cmake_install.cmake
.DS_Store
-/example/example*.so
-/example/example.cpython*.so
-/example/example.pyd
-/example/example*.dll
+*.so
+*.pyd
+*.dll
*.sln
*.sdf
*.opensdf
@@ -32,3 +31,4 @@ MANIFEST
/dist
/build
/cmake/
+.cache/