mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
Due to differences in how py.test determines which module to ``import`` the test suite actually runs against the cryptography which is in the *current* directory instead of the cryptography which is installed. The problem essentially boils down to when there is a tests/__init__.py then py.test adds the current directory to the front of the sys.path, causing it to take precedence over the installed location. This means that running the tests relies on the implicit compile that CFFI does instead of testing against what people will actually be runnning, which is the module compiled by setup.py.
13 lines
311 B
Text
13 lines
311 B
Text
include AUTHORS.rst
|
|
include CHANGELOG.rst
|
|
include CONTRIBUTING.rst
|
|
include LICENSE
|
|
include LICENSE.APACHE
|
|
include LICENSE.BSD
|
|
include README.rst
|
|
|
|
recursive-include docs *
|
|
recursive-include src/cryptography/hazmat/primitives/src *.c *.h
|
|
prune docs/_build
|
|
recursive-include tests *.py
|
|
recursive-exclude vectors *
|