Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 52b049d

Browse files
committed
set +e along with lint and test errors
1 parent 82695c1 commit 52b049d

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
command: |
5555
. venv/bin/activate
5656
python --version
57+
set +e
5758
npm run test
5859
npm run lint
5960

scripts/publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env node
22
const execSh = require('exec-sh');
33
let version = require('../package.json').version;
4-
const name = require('../package.json').name.replace(/-/g, '_');
4+
let name = require('../package.json').name.replace(/-/g, '_');
55
if(version.includes("rc")) {
66
version = version.replace('-', '');
77
console.log("Adjusted version to", version, "for PyPi");

tests/test_dash_html_components.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ def test_sample_items(self):
3939
self.assertEqual(
4040
layout._namespace, 'dash_html_components'
4141
)
42+
43+
self.assertEqual('error', 'test that we see this AND lint error')

0 commit comments

Comments
 (0)