-
-
Notifications
You must be signed in to change notification settings - Fork 143
Remove artifacts from dev
#659
Conversation
- remove build artifacts - two step generation for now
.circleci/config.yml
Outdated
- image: percyio/agent | ||
steps: | ||
- run: percy finalize --all | ||
'percy-finalize': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this file just get prettier
? hard to tell from the diff the real change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
.circleci/config.yml
Outdated
# build main dash | ||
git clone --depth 1 https://github.com/plotly/dash.git dash-main | ||
cd dash-main && pip install -e .[dev,testing] && python setup.py sdist && mv dist/* ../packages/ | ||
cd dash-main && pip install -e .[dev,testing] --quiet && python setup.py sdist && mv dist/* ../packages/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think our intention is to mute the progress bar, --progress-bar off
at least for now, we need to check the pip install logs from time to time
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💃
it might have some conflict with the one I modified in lazy load PR, please base on that in the future
Same as dash-table plotly/dash-table#603