File: .gitpod.yml

package info (click to toggle)
python-pyvista 0.44.1-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 159,804 kB
  • sloc: python: 72,164; sh: 118; makefile: 68
file content (23 lines) | stat: -rw-r--r-- 534 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image:
  file: docker/dev-gitpod.Dockerfile

# --------------------------------------------------------
# exposing ports for liveserve
ports:
  - port: 5500
    onOpen: notify
  - port: 6080
    onOpen: open-preview

vscode:
  extensions:
    - ms-python.python
    - ritwickdey.liveserver

tasks:
  - init: |
      pip install --no-cache-dir -r requirements_test.txt
      pip install --no-cache-dir -r requirements_docs.txt
      pip install --no-cache-dir pre-commit
      pre-commit install --install-hooks
      pip install -e .