Skip to content
Snippets Groups Projects
Commit a5c1ba7a authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

forgot about bools, v1.7

parent 96b171e6
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,8 @@ orbs:
workflows:
sample: # This is the name of the workflow, feel free to change it to better match your workflow.
# Inside the workflow, you define the jobs you want to run.
# For more details on extending your workflow, see the configuration docs: https://circleci.com/docs/2.0/configuration-reference/#workflows
# Inside the workflow, you define the jobs you want to run.
# For more details on extending your workflow, see the configuration docs: https://circleci.com/docs/2.0/configuration-reference/#workflows
jobs:
- build-and-test
......@@ -35,10 +35,10 @@ jobs:
pkg-manager: pip
# app-dir: ~/project/package-directory/ # If you're requirements.txt isn't in the root directory.
# pip-dependency-file: requirements.txt # if you have a different name for your requirements file, maybe one that combines your runtime and test requirements.
- run:
name: Run tests
- install:
name: Install the software
# This assumes pytest is installed via the install-package step above
command: >
python setup.py install
rm -rf minijson
pytest
command: DEBUG=1 python setup.py install && rm -rf minijson
- test:
name: Test the software
command: pytest
......@@ -12,6 +12,7 @@ if 'DEBUG' in os.environ:
dont_snakehouse = True
build_kwargs.update(gdb_debug=True)
directives['embedsignature'] = True
directives['linetrace'] = True
setup(version='1.7',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment