小编Ben*_*Ben的帖子

什么是'Currying'?

我在几篇文章和博客中看到了对curried函数的引用,但我找不到一个好的解释(或者至少有一个有意义的解释!)

functional-programming terminology definition currying

628
推荐指数
12
解决办法
15万
查看次数

什么是'关闭'?

我问了一个关于Currying和关闭的问题.什么是关闭?它与currying有什么关系?

computer-science glossary functional-programming terminology

403
推荐指数
10
解决办法
12万
查看次数

如何在Pylons中使用Nose运行单个测试

我有一个Pylons 1.0应用程序,在测试/功能目录中有一堆测试.我得到了奇怪的测试结果,我想只运行一次测试.鼻子文档说我应该能够在命令行传递测试名称,但无论我做什么,我都会得到ImportErrors

例如:

nosetests -x -s sometestname
Run Code Online (Sandbox Code Playgroud)

得到:

Traceback (most recent call last):
  File "/home/ben/.virtualenvs/tsq/lib/python2.6/site-packages/nose-0.11.4-py2.6.egg/nose/loader.py", line 371, in loadTestsFromName
   module = resolve_name(addr.module)
  File "/home/ben/.virtualenvs/tsq/lib/python2.6/site-packages/nose-0.11.4-py2.6.egg/nose/util.py", line 334, in resolve_name
   module = __import__('.'.join(parts_copy))
ImportError: No module named sometestname
Run Code Online (Sandbox Code Playgroud)

我得到了同样的错误

nosetests -x -s appname.tests.functional.testcontroller
Run Code Online (Sandbox Code Playgroud)

什么是正确的语法?

testing pylons nose nosetests

149
推荐指数
2
解决办法
6万
查看次数

VS Code 找不到 pytest 测试

我在 vs-code 中设置了 PyTest,但是即使从命令行运行 pytest 工作正常,也没有找到任何测试。

(我正在使用 MiniConda 和 Python 3.6.6 虚拟环境在 Win10 上开发 Django 应用程序。VS Code 已完全更新,我安装了 Python 和 Chrome 扩展程序调试器)

pytest.ini:

[pytest]
DJANGO_SETTINGS_MODULE = callsign.settings
python_files = tests.py test_*.py *_tests.py
Run Code Online (Sandbox Code Playgroud)

vs-code 工作区设置:

{
    "folders": [
        {
            "path": "."
        }
    ],
    "settings": {
        "python.pythonPath": "C:\\ProgramData\\Miniconda3\\envs\\callsign\\python.exe",
        "python.unitTest.unittestEnabled": false,
        "python.unitTest.nosetestsEnabled": false,
        "python.unitTest.pyTestEnabled": true,
        "python.unitTest.pyTestArgs": ["--rootdir=.\\callsign", "--verbose"]
    }
}
Run Code Online (Sandbox Code Playgroud)

最后,VS 代码中 Python 测试日志的输出:

============================= test session starts =============================
platform win32 -- Python 3.6.6, pytest-4.1.1, py-1.7.0, pluggy-0.8.1
Django settings: callsign.settings (from ini file) …
Run Code Online (Sandbox Code Playgroud)

python pytest python-3.x visual-studio-code pytest-django

7
推荐指数
5
解决办法
2万
查看次数

如何使用 GITHUB-SHA 预填充工作流程_dispatch Github 操作中的输入字段

我正在尝试构建一个工作流调度(即手动)Github 操作,该操作使用分支的 SHA 预先填充输入字段。

IE

name: Manually tag a release
on: 
  workflow_dispatch:
    inputs:
      git-sha:
        description: Release SHA
        default: <prefill with GITHUB_SHA>
        required: true
Run Code Online (Sandbox Code Playgroud)

我已经尝试过default: ${{ github.sha }},但这会引发错误。

这可能吗?语法是什么?

github-actions

6
推荐指数
1
解决办法
2105
查看次数

如何在连续几天的"连胜"中向行添加运行计数

感谢Mike提出添加create/insert语句的建议.

create table test (
  pid integer not null,
  date date not null,
  primary key (pid, date)
);

insert into test values
  (1,'2014-10-1')
, (1,'2014-10-2')
, (1,'2014-10-3')
, (1,'2014-10-5')
, (1,'2014-10-7')
, (2,'2014-10-1')
, (2,'2014-10-2')
, (2,'2014-10-3')
, (2,'2014-10-5')
, (2,'2014-10-7');
Run Code Online (Sandbox Code Playgroud)

我想添加一个新列,即"当前条纹天数",因此结果如下所示:

pid    | date      | in_streak
-------|-----------|----------
1      | 2014-10-1 | 1
1      | 2014-10-2 | 2
1      | 2014-10-3 | 3
1      | 2014-10-5 | 1
1      | 2014-10-7 | 1
2      | 2014-10-2 …
Run Code Online (Sandbox Code Playgroud)

sql postgresql date-arithmetic window-functions gaps-and-islands

5
推荐指数
1
解决办法
2159
查看次数

Django 2.1如何在迁移中创建用户

我正在尝试添加新用户,然后将其与现有记录的子集关联。

例如,假设我有这个应用程序模型:

class Foo(Model):
    user = model.ForeignKey(User, default=None, on_delete=models.CASCADE)
Run Code Online (Sandbox Code Playgroud)

在迁移中,我有:

from django.contrib.auth.models import User    

def add_user(apps, schema_editor):
    anon = User.objects.create_user(username='anonymous')
    anon.save()

    Foo = apps.get_model('myapp', 'Foo')
    foo_to_change = Foo.objects.filter(user_id=1)

    for f in foo_to_change:
        f.user = anon
        f.save()    
Run Code Online (Sandbox Code Playgroud)

当我运行它时,我得到这个错误:

ValueError: Cannot assign "<User: anonymous>": "Foo.user" must be a "User" instance.
Run Code Online (Sandbox Code Playgroud)

我认为问题可能出在我直接使用User模型,而文档说不这样做。因此,我将顶部更改为:

User = apps.get_model('auth', 'User')
anon = User.objects.create_user(username='anonymous')
anon.save()
Run Code Online (Sandbox Code Playgroud)

现在我得到了另一个错误:

AttributeError: type object 'User' has no attribute 'normalize_username'
Run Code Online (Sandbox Code Playgroud)

我究竟做错了什么?如何在数据迁移中添加新用户?

编辑:我正在使用sqlite作为数据库

django django-migrations

5
推荐指数
1
解决办法
1195
查看次数

Instant Rails死了吗?

RubyForge上的最新更新下载(http://rubyforge.org/frs/?group_id=904)日期为2007-12-28.在Rails术语中,这是在上一个千禧年的某个时间.这个项目已经死了吗?还有其他选择吗?

ruby-on-rails portable-applications

4
推荐指数
1
解决办法
1810
查看次数