We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ee4786 commit 54e4b5aCopy full SHA for 54e4b5a
.coveragerc
@@ -8,11 +8,5 @@ source_pkgs = varats
8
9
parallel = True
10
11
-[paths]
12
-source =
13
- varats/varats/
14
- */site-packages/varats/
15
- */site-packages/varats-core/
16
-
17
[report]
18
ignore_errors = True
.github/workflows/ci.yml
@@ -18,6 +18,8 @@ jobs:
19
steps:
20
- uses: actions/checkout@v2
21
+ with:
22
+ fetch-depth: 0
23
24
- name: Set up Python ${{ matrix.python-version }}
25
uses: actions/setup-python@v2
@@ -31,8 +33,8 @@ jobs:
31
33
- name: Install dependencies
32
34
run: |
35
python -m pip install --upgrade pip
- pip install ./varats-core
- pip install ./varats
36
+ pip install -e ./varats-core
37
+ pip install -e ./varats
38
pip install -r requirements.txt
39
pip install codecov
40
pip install pytest-cov
0 commit comments