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: ...@@ -9,8 +9,8 @@ orbs:
workflows: workflows:
sample: # This is the name of the workflow, feel free to change it to better match your workflow. 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. # 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 # For more details on extending your workflow, see the configuration docs: https://circleci.com/docs/2.0/configuration-reference/#workflows
jobs: jobs:
- build-and-test - build-and-test
...@@ -35,10 +35,10 @@ jobs: ...@@ -35,10 +35,10 @@ jobs:
pkg-manager: pip pkg-manager: pip
# app-dir: ~/project/package-directory/ # If you're requirements.txt isn't in the root directory. # 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. # 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: - install:
name: Run tests name: Install the software
# This assumes pytest is installed via the install-package step above # This assumes pytest is installed via the install-package step above
command: > command: DEBUG=1 python setup.py install && rm -rf minijson
python setup.py install - test:
rm -rf minijson name: Test the software
pytest command: pytest
...@@ -12,6 +12,7 @@ if 'DEBUG' in os.environ: ...@@ -12,6 +12,7 @@ if 'DEBUG' in os.environ:
dont_snakehouse = True dont_snakehouse = True
build_kwargs.update(gdb_debug=True) build_kwargs.update(gdb_debug=True)
directives['embedsignature'] = True directives['embedsignature'] = True
directives['linetrace'] = True
setup(version='1.7', 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