Skip to content

Commit

Permalink
ADD: better test CI organization
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentAuriau committed Oct 21, 2023
1 parent 01ef266 commit e4f4c8c
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
branches: [master]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
strategy:
matrix:
python-version: [3.8.6]
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Switch to Current Branch
run: git checkout ${{ env.BRANCH }}

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
cd key_generator/source
pip install -r requirements-dev.txt
pip install -e .
- name: Run unit tests
run: python -m pytest --import-mode=append tests/
1 change: 1 addition & 0 deletions tests/engine_test.py → tests/prev_engine_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import sys

sys.path.append("../python")
sys.path.append("python")

import engine.engine as engine
import importlib
Expand Down
17 changes: 17 additions & 0 deletions tests/unit_test/engine_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import sys

sys.path.append("../../python")
sys.path.append("python")

import engine.engine as engine

def test_blocked_moves():
"""
Test that a blocked move does not happen.
"""
print("ok")
game = engine.Game(automatic_draw=False)
game.move_from_coordinates(game.player1, 1, 4, 3, 4)
_, winner = game.move_from_coordinates(game.player2, 7, 0, 5, 0)
print("win", winner)
assert winner == 0

0 comments on commit e4f4c8c

Please sign in to comment.