Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
Removed failing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
fferegrino committed Sep 30, 2018
1 parent 06aa7c0 commit 40cacca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
- v1-dependencies-{{ checksum "setup.py" }}-{{ checksum "requirements.txt" }}

- run:
name: install dependencies
name: Install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
make dev
- run:
name: run some tests
name: Run some tests
command: |
python3 -m venv venv
. venv/bin/activate
Expand All @@ -48,14 +48,14 @@ jobs:
key: v1-dependency-cache-{{ checksum "setup.py" }}-{{ checksum "requirements.txt" }}

- run:
name: install python dependencies
name: Install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
make dev
- run:
name: run some tests
name: Run some tests
command: |
python3 -m venv venv
. venv/bin/activate
Expand All @@ -67,7 +67,7 @@ jobs:
- "venv"

- run:
name: verify git tag vs. version
name: Verify git tag vs. version
command: |
python3 -m venv venv
. venv/bin/activate
Expand Down
3 changes: 0 additions & 3 deletions tests/test__nb_manipulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,3 @@ def test__nb_cleaner_preserve():
clean = json.loads(preserve_clean)
clean_nb(dirty)
assert dirty == clean

def test_this_fails():
assert 1 == 2

0 comments on commit 40cacca

Please sign in to comment.