Skip to content

Commit f818023

Browse files
committed
Renames test target to dev
Also deletes requirement file and cleans a few other bits
1 parent 14fe613 commit f818023

File tree

7 files changed

+8
-19
lines changed

7 files changed

+8
-19
lines changed

.coveragerc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[run]
22
dynamic_context = test_function
3-
omit = fortls/__init__.py
3+
omit =
4+
fortls/__init__.py
5+
fortls/version.py
46

57
[report]
68
exclude_lines =

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
architecture: x64
2323

2424
- name: Setup
25-
run: pip install .[tests]
25+
run: pip install .[dev]
2626

2727
- name: Unittests
2828
run: pytest -v
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Coverage report
4343
run: |
44-
pip install .[tests]
44+
pip install .[dev]
4545
pytest --cov=fortls --cov-report=xml
4646
4747
- name: Upload coverage to Codecov

.github/workflows/python-publish.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,6 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v2
21-
22-
# # This is a temporary workaround until GitHub Actions start natively
23-
# # supporting signed commits like they should
24-
# - name: Import GPG key
25-
# id: import_gpg
26-
# uses: crazy-max/ghaction-import-gpg@v4
27-
# with:
28-
# gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
29-
# passphrase: ${{ secrets.PASSPHRASE }}
30-
# git_user_signingkey: true
31-
# git_commit_gpgsign: true
32-
3321
- name: Set up Python
3422
uses: actions/setup-python@v2
3523
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.vscode
33
*.egg-info
44
dist/
5+
build/
56
docs/_build/
67
docs/fortls_changes.md
78
fortls/_version.py

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,11 @@ console_scripts =
4242
fortls = fortls.__init__:main
4343

4444
[options.extras_require]
45-
tests =
45+
dev =
4646
pytest >= 5.4.3
4747
pytest-cov >= 2.12.1
4848
black
49+
isort
4950
docs =
5051
sphinx ~= 4.0.0
5152
sphinx_rtd_theme

setup.py

100755100644
File mode changed.

test_requirements.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)