Pamela Fox commited on
Commit
a13481c
·
1 Parent(s): 8c6d23c

Test workflow

Browse files
Files changed (3) hide show
  1. .devcontainer/devcontainer.json +3 -1
  2. .gitignore +1 -0
  3. pyproject.toml +1 -1
.devcontainer/devcontainer.json CHANGED
@@ -40,7 +40,8 @@
40
  "python.formatting.provider": "black",
41
  "files.exclude": {
42
  "**/*.coverage": true,
43
- ".ruff_cache": true
 
44
  }
45
  },
46
 
@@ -51,6 +52,7 @@
51
  "ms-python.vscode-pylance",
52
  "charliermarsh.ruff",
53
  "ms-azuretools.vscode-bicep",
 
54
  "mtxr.sqltools",
55
  "mtxr.sqltools-driver-pg",
56
  "spmeesseman.vscode-taskexplorer"
 
40
  "python.formatting.provider": "black",
41
  "files.exclude": {
42
  "**/*.coverage": true,
43
+ ".ruff_cache": true,
44
+ ".pytest_cache": true
45
  }
46
  },
47
 
 
52
  "ms-python.vscode-pylance",
53
  "charliermarsh.ruff",
54
  "ms-azuretools.vscode-bicep",
55
+ "GitHub.vscode-github-actions",
56
  "mtxr.sqltools",
57
  "mtxr.sqltools-driver-pg",
58
  "spmeesseman.vscode-taskexplorer"
.gitignore CHANGED
@@ -6,3 +6,4 @@ staticfiles/
6
  .azure
7
  pytest.xml
8
  pytest-coverage.txt
 
 
6
  .azure
7
  pytest.xml
8
  pytest-coverage.txt
9
+ coverage.xml
pyproject.toml CHANGED
@@ -14,7 +14,7 @@ exclude = '''
14
  '''
15
 
16
  [tool.pytest.ini_options]
17
- addopts = "-ra --cov=src --cov-report=term-missing:skip-covered --junitxml=pytest.xml"
18
  pythonpath = ["src"]
19
  python_files = ["tests.py"]
20
  env_override_existing_values = 1
 
14
  '''
15
 
16
  [tool.pytest.ini_options]
17
+ addopts = "-ra --cov=src --cov-report-xml:coverage.xml --junitxml=pytest.xml"
18
  pythonpath = ["src"]
19
  python_files = ["tests.py"]
20
  env_override_existing_values = 1