Skip to content

Commit 9312fe4

Browse files
authored
Merge pull request #429 from plotly/fix-ci-path-issue
Fix ci path issue
2 parents 02eb3f2 + df5111e commit 9312fe4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Install dependencies
2727
command: |
2828
sudo pip install virtualenv
29-
python -m venv venv || virtualenv venv
29+
virtualenv venv
3030
. venv/bin/activate
3131
pip install -r $REQUIREMENTS_FILE
3232

tests/development/test_component_loader.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,6 @@ def tearDown(self):
169169
os.remove(METADATA_PATH)
170170
shutil.rmtree('default_namespace')
171171

172-
@unittest.skip('Broken - https://github.com/plotly/dash/issues/419')
173172
def test_loadcomponents(self):
174173
MyComponent_runtime = generate_class(
175174
'MyComponent',

0 commit comments

Comments
 (0)